ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

三列布局 css

2026/9/9 2:48:01 拓冰建站 浏览量
三列布局 css

实现如下图的三列布局:
在这里插入图片描述

.box {width:1400px;margin:0 auto;padding-bottom:40px;> .left {float:left;width:180px;margin-top:100px;text-align:center;}> .center {float:left;margin-top:100px;margin-left:130px;item-box {float:left;text-align:left;margin-right:90px;}}.right {float:right;margin-top:100px;}
}
注意:
// 最外层的box壳子上要加去除浮动的样式
.clearfix :after{content:'';display:block;height:0;clear:both;visibility:hidden;
}