フッターの幅をページの 100% に広げたい。ただし、流動的なレイアウトを作成できるように、HTML ドキュメントの本文に min-width:1000px と max-width:1000px を定義しました。max/min-width:100% に設定してフッターを作成すると、ページ全体にまたがらず、本文に設定された最小/最大幅によって制限されます。フッターの幅を 100% に設定し、最小/最大幅を本体で 1000px に定義する方法はありますか? 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;
}