CSS 3列,固定宽度,内容最高
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 3列,固定宽度,内容最高相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>3 columns, fixed width, content tallest</title>
<style type="text/css">
#container{
background-color:#9cc;
float:left;
width:500px;
border-left:150px solid #cf9; /* The width and color of the left rail */
border-right:200px solid #c33; /* The width and color of the right rail */
}
#leftRail{
float:left;
width:150px;
margin-left:-150px;
position:relative;
}
#center{
float:left;
width:500px;
margin-right:-500px;
}
#rightRail{
float:right;
width:200px;
margin-right:-200px;
position:relative;
}
</style>
</head>
<body>
<div id="container">
<div id="center">CENTER<br />COLUMN CONTENT</div>
<div id="leftRail">LEFT RAIL</div>
<div id="rightRail">RIGHT RAIL</div>
</div>
</body>
</html>
以上是关于CSS 3列,固定宽度,内容最高的主要内容,如果未能解决你的问题,请参考以下文章
CSS 3列,液体宽度,左侧导轨最高
css中table列宽怎样动态设置
3列,固定宽度,内容:
css能不能实现左边div固定宽度,右边div自适应撑满剩下的宽度
div能不能根据内容自适应宽度?
具有固定列和流动列的 CSS 布局