我想要一个使用自动左/右边距的居中块,但我也希望它具有背景颜色。由于背景颜色不应用于块的边距区域,因此我使用设置了背景颜色的块,然后使用具有自动边距的内部块。
我不喜欢这个,因为它需要额外的标记。是否有一种技术可以在仅使用单个块的同时实现这一目标?
更新:澄清一下,我想用一个块而不是两个块来实现同样的事情;在下面的示例中,我想删除内部 div。
我目前正在使用的基本代码:
<section id="example">
<div id="inner">
<h1>Example</h1>
<p>Example content.</p>
</div>
</section>
<style>
#example {
background-color:#ccc;
}
#inner {
margin:0 auto;
padding:10px 0;
width:500px;
background:white;
}
</style>
在网站或 Google 中找不到任何内容。
在此先感谢,奈杰尔