gpt4 book ai didi

css - 带有视口(viewport)滚动内容的标题 100% 宽度

转载 作者:行者123 更新时间:2023-11-28 12:17:56 25 4
gpt4 key购买 nike

我想使用可变的中间内容宽度将页眉和页脚扩展到 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;
}

我不想要固定的标题和不改变结构..

请帮忙..

谢谢,

最佳答案

您可以按如下方式实现此布局。

您需要添加一个 .wrapper 元素,这是必不可少的:

<div class="wrapper">
<div class="header">this is header</div>
<div class="content">this is content</div>
<div class="footer">this is footer</div>
</div>

对于 CSS:

.wrapper {
display: table;
}
.header, .footer {
width:100%;
background:#999;
height:200px;
}
.content {
width:2500px;
height:100px;
background:#9B191B;
}

关键是将 display: table 应用于 .wrapper block 。

参见演示:http://jsfiddle.net/audetwebdesign/7jxLC/

关于css - 带有视口(viewport)滚动内容的标题 100% 宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19004252/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com