我希望页脚的宽度能够拉伸 100% 的页面。但是,我在 HTML 文档的主体上定义了 min-width:1000px 和 max-width:1000px 以帮助创建流畅的布局。现在,当我创建将其设置为 max/min-width:100% 的页脚时,它不会跨越整个页面,并且受到正文上设置的 min/max-width 的限制。有没有办法将页脚的宽度设置为 100%,同时在正文中将最小/最大宽度定义为 1000 像素?HTML 和 CSS 的代码是:
HTML:
<!doctype html>
<html lang="en">
<head>
Some Text
</head>
<body>
<header>
Some Text
</header>
<section class="mainSection">
<article class="mainArticle">
<header>
<h4>Some Text</h4>
</header>
<p>
Some text
</p>
</article>
</section>
<footer>
<section class="footerSection">
<article class="footerArticle">
<p>Some Text</p>
</article>
</section>
</footer>
CSS:
body{
margin:0px auto;
min-width:1000px;
max-width:1000px;
height:auto;
background-color: #97cdcd;
background-size: 5px 5px;
background-image: linear-gradient(rgba(189, 204, 211, .50) 50%, transparent 50%, transparent);
background-image: -webkit-linear-gradient(rgba(189, 204, 211, .50) 50%, transparent 50%, transparent);
background-image: -moz-linear-gradient(rgba(189, 204, 211, .50) 50%, transparent 50%, transparent);
}
body > footer{
margin:0px;
padding:0px;
min-width:100%;
max-width:100%;
background:#ffffff;
height:auto;
}