小程序为button设置边框(去除本身边框样式)
2019-02-22 本文已影响0人
YangDxg
.location {
height: 60rpx;
border-width: 1rpx;
border-color: #ddd;
border-style: solid;
border-radius: 30rpx;
text-align: center;
}
//去除自带的butto样式,如果不加这个,会覆盖,导致边框加宽
.location::after {
border: none;
}