border-radius在Android下的几个BUG

图片的外层元素添加border属性, border-radius属性设置成最大

.img{ 110px; height: 110px; border: 5px solid #ccc; border-radius: 999px;}
.img img{ 110px; height: 110px; border-radius: 999px;}

<div class="img">
<img src="123.jpg" alt="">
</div>

原文地址:https://www.cnblogs.com/hellman/p/5086565.html