Heim >Web-Frontend >HTML-Tutorial >div+css 常用三种自动适应宽度分栏_html/css_WEB-ITnose

div+css 常用三种自动适应宽度分栏_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:28:431295Durchsuche

CSS两列布局,右侧固定,左侧自适应宽度 <div style="width:90%; margin:0 auto; overflow:auto; _display:inline-block;"> 	<div style="width:200px; float:right; background:#090">这是右侧的内容</div> 	<div style=" margin-right:210px; background:#F33">这是左侧的内容,自适应宽度</div> </div> CSS两列布局,左侧固定,右侧自适应宽度 <div style="width:90%; margin:0 auto; overflow:auto; _display:inline-block;"> 	<div style="width:150px; float:left; background:#6F0">这是左侧的内容 固定宽度</div> 	<div style=" margin-left:160px; background:#FC0">中间内容,自适应宽度</div> </div> CSS三列布局,左右宽度固定,中间自适应宽度 <div style="width:90%; margin:0 auto; overflow:auto; _display:inline-block;"> 	<div style="width:200px; float:right; background:#393"> 这是右侧的内容 固定宽度</div> 	<div style="width:150px; float:left; background:#F60 ">这是左侧的内容 固定宽度</div> 	<div style=" margin-left:160px;margin-right:210px; background:#6C3;">中间内容,自适应宽度</div> </div>

 overflow:auto; _display:inline-block; 是清除浮动的,_display:inline-block;针对IE6的。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn