与CSS一样,小程序中的圆角可以通过border-radius来设置。
给图片设置圆角边框,只需加上如下样式即可:
image{border-radius: 5px;overflow: hidden; }
不同的是,在小程序中想要设置仅其中某个圆角,而其它为直角,则需要使用 border-bottom-left-radius, border-top-left-radius, border-bottom-left-radius, border-top-left-radius单独设置。
使用类似于CSS中的直接在border-radius属性中写四个值,如: border-radius: 5px,0px,0px,5px; 则没有效果