我有一个小项目的问题。我有一个导航栏,它是一个 div,里面有链接,但是每当我调整页面大小时,最后两个都会开始一个新行。我希望链接保持水平位置并在页面中添加滚动条。例如,当您在谷歌上并调整浏览器大小时,溢出的内容不会开始新行。添加滚动条。我曾尝试使用父 div 并设置最小宽度,但都没有奏效。
CSS:
.topBar {
background-color:rgb(161,35,35);
position:relative;
display:inline-block;
width:100%;
text-align:center;
height:40px;
}
.text2 {
font-size:35;
text-decoration:none;
margin-left:4%;
margin-right:4%;
}
.parent {
min-width:100%;
}
和 HTML:
<div class="parent">
<div class="topBar">
<a class="text2" href="placeholder.html">Media Mash</a>
<a class="text2" href="placeholder.html">Film</a>
<a class="text2" href="placeholder.html">Music</a>
<a class="text2" href="placeholder.html">Games</a>
<a class="text2" href="placeholder.html">Books</a>
</div>
</div>