ちょっとしたプロジェクトで問題が発生しました。div であるナビゲーション バーがあり、その中にリンクがありますが、ページのサイズを変更するたびに、最後の 2 つが新しい行を開始します。リンクを水平位置に保ち、スクロールバーをページに追加したいと思います。たとえば、Google を使用しているときにブラウザーのサイズを変更すると、オーバーフローしたコンテンツが改行されず、スクロールバーが追加されます。親 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>