首页 > 代码库 > 多个块元素一行显示有哪几种方法

多个块元素一行显示有哪几种方法

1.浮动法

<style>
*{margin:0;padding:0;}
.box{width:600px;height:400px;border:1px solid red;}
.one{width:100px;height:100px;border:1px solid #000;float:left;}
</style>


<div class="box">
<div class="one">第一个</div>
<div class="one">第二个</div>
<div class="one">第三个</div>
</div>

多个块元素一行显示有哪几种方法