1、使用display的inline属性
<div style="width:300px; height:auto; display:inline; background:yellow">AAAA</div>
<div style="width:300px; height:auto; display:inline; background:red">BBBB</div>
效果图
2、使用float
<div style="width:300px; height:auto; float:left; background:yellow">AAAA</div>
<div style="width:300px; height:auto; float:left; background:red">BBBB</div>
效果图
网友评论