無背景色我在HTML這個簡單的佈局:CSS - DIV中div中,IE
<body>
<div class="container">
<p class="title1">Title 1</p>
<div class="content">
<p class="title2">Title 2</p>
</div>
</div>
</body>
下面CSS:
body {
background-image:url(masthead.gif);
margin: 0;
padding: 0;
}
.container {
position:absolute;
width: 960px;
height:600px;
left: 50%;
margin-left: -480px;
margin-top: -300px;
top: 50%;
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border: 1px solid #81a1b7;
zoom: 100%;
background-color: rgba(117,161,180,0.5);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f75A1B4,endColorstr=#7f75A1B4);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f75A1B4,endColorstr=#7f75A1B4)";
}
.content {
background-color: rgba(255,255,255,0.8);
border-radius: 15px 15px 15px 15px;
padding: 10px 0;
margin: 15px;
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
height: 500px;
}
.title1 {
font-family:Arial, Helvetica, sans-serif;
font-size:20px;
color:#FFF;
margin-top: 15px;
}
.title2 {
font-family:Arial, Helvetica, sans-serif;
font-size:18px;
color:#000;
margin-top: 0px;
}
我期待看到一個白色背景並在裏面的「內容」div圓角...我得到了這個工作在Firefox和Chrome,但沒有在Internet Explorer中的背景顏色。我究竟做錯了什麼?
...查看JsFiddle
在IE9上工作得很好。 –