我想模擬浮動模式框類型的東西,但有一個問題與IE9和它的盒子陰影實現。在IE9盒陰影不呈現使用正確的CSS,適用於Firefox,Chrome
下面是我使用的可以複製的問題代碼的一個總結:
<html>
<head>
<title>Sample page</title>
<style>
.content-holder {
border-collapse: collapse;
}
.back {
background-color: #a8c0ff;
padding: 100px;
}
.inner {
background-color: #fff;
text-align: center;
padding: 50px;
box-shadow: 0px 0px 20px #000;
}
</style>
</head>
<body>
<table class="content-holder">
<tr>
<td>
<div class="back">
<div class="inner">
<h2>Heading</h2>
<p class="subtext">Some text here</p>
<p>More text</p>
<a class="button" href="#">A button</a>
</div>
</div>
</td>
</tr>
</table>
</body>
它工作正常,在Firefox/Chrome瀏覽器等,但IE9不會顯示陰影。我可以將它改變成一個嵌入的陰影,它看起來應該是這樣,但外面的陰影仍然不能逃避我。
任何人都可以在這個陰影問題上揭露一些光?
剛剛有同樣的問題[插入拳頭震動] – 2013-01-21 10:01:16