所以我試圖創建一個標題在中心的導航欄和一個出現在右邊的按鈕。正如你所看到的,當我試圖做到這一點,該按鈕會出現在下一行進出的div:導航欄的標題在中心,按鈕右移
.title-bar {
background-color: #48A6B8;
font-style: italic;
margin-bottom: 3%;
color: #fff;
}
.title {
text-align: center;
font-size: 36px;
line-height: 180%;
}
.buts {
float: right;
}
<div class="title-bar">
<div class="title">Title</div>
<div class="button">
<button class="buts">Whats Up</button>
</div>
</div>
display:inline-block
似乎去除的定心文字,所以我不能用...
在此先感謝!