我正在從freecodecamp學習HTML和CSS。所有Bootstrap代碼我都有點困惑。Navtab問題
這裏是我的代碼:
h1 {
text-align: center;
letter-spacing: 5px;
color: coral;
font-family: verdana;
}
ul {
height: 20%;
background-color: darkgrey;
list-style-type: none;
display: solid;
}
li {
display: inline-block;
padding: 0% 5% 0% 5%;
text-align:
}
#first {
margin: 0% 0% 0% 30%;
}
li:hover {
background-color: bisque;
text-decoration: none;
}
<h1> Test Website </h1>
<div class="container-fluid">
<div class="menu">
<div id="tope"></div>
<ul id="navbar">
<li id="first"><a href="www.a.com"> Us </a></li>
<li><a href="www.b.com"> Work </a></li>
<li id="last"><a href="www.c.com"> Vids and photos </a></li>
</ul>
</div>
</div>
演示:CodePen。
我正在努力的問題是,當我調整屏幕大小時,我的navtab(實際上,所有<li>
元素)不會跟隨主標題<h1>
元素。
我想製作某種網格系統,其中我的<li>
以<h1>
爲中心,但沒有Bootstrap。那可能嗎?如果是這樣,怎麼樣?