>  기사  >  웹 프론트엔드  >  CSS:三栏布局,两边固定,中间自适应_html/css_WEB-ITnose

CSS:三栏布局,两边固定,中间自适应_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:50:491605검색

之前去面试被问到一个布局的问题:
三栏布局,两边固定,中间自适应

当时给出的答案是左右两边分别左浮动和右,中间自适应,然后设置一个margin。也算是实现了效果。

<style type="text/css">	*{margin:0;padding:0;}	.left{float:left;width:300px;background:red;height:500px;}	.right{float:right;width:300px;background:red;height:500px;}	.center{margin:0 230px;background:blue;}</style><div class="left">left</div><div class="right">right</div><div class="center">center</div>

注意:中间一列一定要放到最下面

在网上发现了另一种用定位的方式实现的。左右设置为固定定位,中间自适应。

<style type="text/css">	html,body{margin:0;padding:0;height:100%;}	.left,.right{		position:absolute;		top:0;		width:300px;		height:100%;		background-color:blue;	}	.left{		left:0;	}	.right{		right:0;	}	.center{		margin:0 230px;		height:100%;		color:#f90;		background:red;	}</style>

还有类似这样的面试题:比如,中间固定,两边自适应;左边固定,右边自适应等等。有时间再去研究。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.