赞
踩
css实现三个DIV完美等分样式
html代码:
<div class="aa">
<div style="background:red; height:100px;"></div>
<div style="background:#00ffff; height:100px;"></div>
<div style="background:#33CC66; height:100px;"></div>
</div>
css:
.aa { border: 1px solid red; padding: 30px; display: -webkit-box; display: box; -webkit-box-orient: horizontal; /* 垂直是vertical */ -moz-box-orient: horizontal; /* 垂直是vertical */ box-orient: horizontal; } .aa div { -webkit-box-flex: 1; -moz-box-flex: 1; box-flex: 1; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。