<div class="container"> <div class="section section1"></div> <div class="section section2"></div> <div class="section section3"></div> </div>
<style> .container { display: flex; } .section { flex-basis: 33.33%; } .section1 { background-color: #ff4433; } .section2 { background-color: #ffee33; } .section3 { background-color: #33ffee; } </style>
上面的代码演示了如何将一个div元素分成三个部分,并使用flex布局实现等分布局。首先,大家将所有的section元素设为flex-basis为33.33%。这样,它们就可以平均地填充容器的宽度。然后,大家为每个section元素设置不同的背景颜色,以便更好地区分它们。
使用这种方法,大家可以很容易地在网页中创建分栏布局,以适应不同的内容和设计需求。如果您希望使分栏布局响应式,请使用媒体查询和自适应布局。