我有一個基本的問題,我有一個菜單框,其中有兩個部分,右側文本部分和左側文本部分,但我不能沿水平方向佈局圖像,我希望兩個水平對齊而不使用負邊距。使用基本Css浮動查詢不使用負邊距
的CSS:
<div id="Menu">
<div class="Menu-Left-Text">This<br />is the <br />section for<br />left text.</div>
<div class="Menu-Right-Text">This<br />is the <br />section for<br />right text.</div>
</div>
#Menu .Menu-Left-Text
{
margin-left: 9px;
padding-top: 9px;
font-size: 16pt;
font-family: 'ITC Avant Garde Gothic';
font-weight: bolder;
width: 189px;
}
#Menu .Menu-Right-Text
{
float:right;
font-family: 'Times New Roman' , Times, serif;
font-weight: bold;
}
這是做的最好的方式,其中U建議的一個或者使用float的那個:right nd left property –
我已經更新了我的答案以解釋本這種方法比僅使用浮動的效果更好。 – Chris