これはおそらく簡単な質問です。背景色のあるヘッダー テキストがあります。テキストが停止すると、背景色も停止します。背景がコンテナの全長を埋めるようにします。
<body>
<div class="container">
<p><span style="color:#ffffff; font-size:30px; background-color:#e12025;">I want the background- color stretched across the container</span>
</div>
</body>
CSS:
body {
background-color:#e12025;
align:center;
font-family:sans-serif;
color:#000000;
font-size:28px;
}
.container {
background-color:#ffffff;
position:relative;
margin-left:auto;
margin-right:auto;
height:1785px;
width:900px;
border-style:none;
padding:10px;
}
例を次に示します: http://mm2.co/background-color