这种风格在边框的外侧给出了平滑边角的边框,但是角落的内部是平坦的,我可以将它们弄圆吗?
img{ -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; border:white solid 8px; }
请注意,问题仅在于图像提交的建议仅适用于div.
解决方法
您可以使用border-radius值作为border-size值的两倍来获得内圆角.
-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; border:white solid 8px;