如何在没有填充区域的情况下背景div

时间:2011-05-05 10:37:13

标签: html css

我在CSS上有这个课程:

.mgmtError{ 
  width:716px; 
  float:left; 
  background-color:#FF0000; 
  padding:10px; 
  text-align:center;
} 

我想为填充区域中的背景着色。 我尝试使用保证金,但似乎它在IE上遇到了一些麻烦。

其他任何解决方案?

2 个答案:

答案 0 :(得分:337)

您可以使用

background-clip: content-box;

答案 1 :(得分:14)

如果您能够访问HTML,请尝试:

.mgmtError {
  width: 716px;
  float: left;
  padding: 10px;
  text-align: center;
  background-color: blue;
}

.mgmtError div {
  background-color: #FF0000;
}
<div class="mgmtError">
  <div>Content</div>
</div>