CSS 布局
实现CSS三栏自适应布局的5种方法
2. 两边使用 position: absolute,中间使用 margin
源代码:
点击运行 »
<style> .container { position: relative; } .left, .right, .main { height: 200px; line-height: 200px; text-align: center; } .left { position: absolute; top: 0; left: 0; width: 100px; background: green; } .right { position: absolute; top: 0; right: 0; width: 100px; background: green; } .main { margin: 0 110px; background: black; color: white; } </style> <div class="container"> <div class="left">左边固定宽度</div> <div class="right">右边固定宽度</div> <div class="main">中间自适应</div> </div>
运行结果:
点击运行 »