标签:style width 渲染 img src ade 一个 图片 http
双飞翼布局,是一种页面布局的形象的表达,他像鸟一样拥有两个翅膀一个身体。具体表现形式为 两边顶宽,中间自适应宽度的三栏布局,中间栏要放在HTML文档流的最前,优先渲染。
<style> .body{ width: 1000px; } .box{ width: 100%; height: 500px; float: left; background: cadetblue; } .left{ width: 200px; height: 500px; float: left; background: firebrick; margin-left: -100%; } .right{ width: 200px; height: 500px; float: right; background: firebrick; margin-left: -100%; } .center{ background: gold; height: 500px; margin: 0 222px; } </style> <div class="body"> <div class="box"> <div class="center">dhgdf</div> </div> <div class="left">dggs</div> <div class="right">sdfsef</div> </div>
标签:style width 渲染 img src ade 一个 图片 http
原文地址:https://www.cnblogs.com/wedmuluo/p/10136506.html