私がスクロールするたびに、作成したnavbarも下に移動します。私がposition:fixed
を使用したとしても、ウィンドウのサイズを変更すると(小さい/大きい)、まだ動きます。CSSの位置が固定されていない
私は間違っていますか?
nav li:nth-child(1) {
position: fixed;
border: 1px solid #15317E;
font-size: 30px;
list-style-type: none;
font-weight: bold;
text-transform: uppercase;
padding: 10px 10px 10px 10px;
width: 184px;
background-color: #15317E;
top: 20px;
left: 220px;
}
a:link,
a:visited {
text-decoration: none;
color: white;
margin-bottom: 1px;
}
a:hover,
a:active {
color: white;
background-color: #1569C7;
width: 1000px;
}
<nav>
<li><a href="Team.html" title="Team">The Team</a></li>
<li><a href="#Info">Information</a></li>
<li><a href="#div">Community</a></li>
</nav>
ありがとうございました。私は絶対に変更しました。 – mathquestion