以下是我的HTML代碼的一部分...CSS3圓角盒和暗影問題
HTML代碼:
<div class="fotter" >
Copyright©2012
<span style=" float:right;">
<strong>Privacy Policy</strong>
<strong>Contact Us</strong>
<strong>Edumemn</strong>
</span>
</div>
和
CSS代碼:
.fotter{
padding:10px 0 5px 0;
margin:0 auto; margin-bottom:10px;
background-image:url(../img/fotter.jpg);
background-repeat:repeat-x;
height:30px; width:1037px;
border:0;
outline:0;
float:left; font-family: Verdana, Geneva, sans-serif; font-size:12px;
border-bottom-right-radius:5px;
border-bottom-left-radius:5px;
box-shadow: 0px 1px 2px #000;
-webkit-box-shadow: -1px 0px 2px #000;
-moz-box-shadow: 0px 5px 2px #000;
}
這是我的網站鏈接..http://nerflek.net/PSD TO HTML/
我的問題是..在Firefox它是在頁腳部分顯示帶陰影的圓角框。但在Internet Explorer 8中不顯示任何陰影或圓角框。
有沒有人幫我解決這個問題。
在此先感謝:-)
IE8是舊的,不支持它。我不會花太多時間修復它。讓它在I8上看起來「夠好」,並等待每個人都升級。 – GolezTrol