什么是实现跨浏览器(ff,即> 6,铬合金,歌剧,safari)弯曲角落的最佳方式。我发现这篇文章http://jonraasch.com/blog/css-rounded-corners-in-all-browsers而且我是按照提示一步步多次,这里是我的CSS:跨浏览器弯曲的边界
#content_wrapper{
-moz-border-radius:25px 25px 25px 25px;
-webkit-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
background-color:#F2DADC;
border:25px solid #ECD3D5;
height:780px;
opacity:0.7;
width:747px;
margin:0px auto;
position:relative;
display:block;
zoom:1;
}
<!--[if lte IE 8]>
<style>
#content_wrapper{
behavior: url(template/css/border-radius.htc);
border-radius: 20px;
}
</style>
<![endif]-->
有人能指出我什么我做错了,或是否有更好的方法来达到同样的效果,它在所有浏览器的工作除了在IE
IE6。真?真? – 2010-05-19 15:28:23
我以为ie6已被弃用 – Kieran 2010-05-25 01:21:35