我有兩個div的contentainer,他們每個人都有頭和段落在裏面。 現在,我想將容器放在同一行,以便它們可以並排排列,並具有相同的邊距。如何將兩個div容器並排放置在同一排中?
這是我試過的。這個問題,你可以看到,第二個容器不在同一條線上,看起來它比第一個容器有更長的餘量。
HTML:
<div id="gallery">
<div id="gallery-text-1">
<p id="gallery-text-quote-1" style="font-family:Century Gothic; color:#006600"><b>Header-1</b></p>
<p id="gallery-paragraph-1">
paragraph1
</p>
</div>
<br />
<div id="gallery-text-2">
<p id="gallery-text-quote-2" style="font-family:Century Gothic; color:#006600"><b>Header-2</b></p><br />
<p id="gallery-paragraph-2">
paragraph2
</p>
</div>
</div>
.CSS:
#gallery-text-1{
float:left;
}
#gallery-text-2{
float:left;
}
觀看演示:Here
我寧願使用'顯示:inline-block的;'過'浮動:left'恕我直言。此外,'
'標籤強制換行,因此如果ROM允許,則刪除允許它們並排顯示。 – jbutler483
刪除
標籤。我也會建議使用像zurb基礎或getfractional.com網格系統 –