我有 2 个带有容器 div 的 div。我将容器的背景颜色设置为白色,并且没有为其他 2 个 div 设置颜色。由于容器的颜色,期待看到白色背景,但一切都是透明的。正常吗?看起来容器的颜色没有被考虑在内。Tks http://jsfiddle.net/Grek/svt2s/
CSS
#team-container
{
width:960px;
background-color:#FFFFFF;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=83)";
filter: alpha(opacity=83);
opacity: 0.83; /* For IE8 and earlier */
margin-left: auto;
margin-right: auto;
background: #fff;
}
#team-left {
color:#000;
padding-left:20px;
padding-top:20px;
/* padding:15px;*/
width: 30%;
float: left;
position: relative;
}
#team-right {
font:12px 'Open Sans', "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight:400;
padding-left:25px;
padding-top:28px;
color:#000;
width: 60%;
float: left;
position: relative;
text-align:justify;
}