今天我們來(lái)學(xué)習(xí)如何讓兩個(gè)長(zhǎng)方形在同一行。
<style> .box { display: inline-block; width: 100px; height: 50px; } .box1 { background-color: red; } .box2 { background-color: blue; } </style> <div> <div class="box box1"></div> <div class="box box2"></div> </div>
上面的代碼中,我們?cè)O(shè)置了兩個(gè)box類的樣式為100px寬,50px高。我們使用inline-block屬性讓這兩個(gè)長(zhǎng)方形在同一行顯示。
最終顯示效果如下:
上一篇css兩張圖片切換特效
下一篇css兩列瀑布流布局排序