我想使用可变的中间内容宽度将页眉和页脚扩展到 100%。
您可以在http://jsfiddle.net/9dWcZ/找到源代码
HTML:
<div class="header">
this is header
</div>
<div class="content">
this is content
</div>
<div class="footer">
this is footer
</div>
CSS:
.header, .footer {
width:100%;
background:#999;
height:200px;
position:relative;
float:left;
clear:both;
display:block;
}
.content {
width:2500px;
height:100px;
background:#9B191B;
float:left;
}
我不想要固定的标题并且结构没有变化..
请帮忙..
谢谢,