html – Chrome中的border-radius bug?

前端之家收集整理的这篇文章主要介绍了html – Chrome中的border-radius bug?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在chrome中的border-radius有问题
这是我的代码
img{
border-radius: 24px;
border: 2px solid #c7c7c7;                 
-moz-border-radius:24px; 
-webkit-border-radius: 24px;
}

在mozzila它工作正常,但在Chrome上看起来很有趣……
在mozzila上,我可以看到一个与我的图像接壤的圆圈,但是在铬上,圆圈会剪切边框,我所能看到的都是直线

截图:http://postimage.org/image/27turq0mc/

你能帮我吗?

解决方法

这可能是一个铬虫.一个解决方案可能是使用div包装img并生成以下css:
img{                
    -moz-border-radius:24px; 
    -webkit-border-radius: 24px;
    border-radius: 24px;
    display:block;
}
div {
    border: 2px solid #c7c7c7; 
    border-radius: 24px;
    -webkit-border-radius: 24px;
    width:40px; /* the width of image */
    height:40px; /* the height of image */
}

演示:http://jsfiddle.net/EnmMp/1/

原文链接:/html/242573.html

猜你在找的HTML相关文章