0
我用css3邊框半徑和css3pie創建了一個圓。這裏是一個鏈接:CSS3餅圖邊框半徑顯示薄邊框的圓
http://www.jamfactory.co.za/tools/circle.html
的問題是在IE瀏覽器的背景顏色超過1px的邊框顏色,這不以任何其他瀏覽器發生。有誰知道一種方法或修復?
下面是代碼:
<html>
<head>
<style>
#OuterCircle {
position:relative;
width:50px;
height:50px;
border: 5px solid #FFFFFF;
background:#e21e36;
}
.circle {
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
behavior: url(PIE.htc);
}
</style>
</head>
<body>
<div id="OuterCircle" class="circle">
</div>
</body>
</html>
感謝您的幫助。