美文网首页
小程序为button设置边框(去除本身边框样式)

小程序为button设置边框(去除本身边框样式)

作者: YangDxg | 来源:发表于2019-02-22 13:39 被阅读0次
    .location {
      height: 60rpx;
      border-width: 1rpx;
      border-color: #ddd;
      border-style: solid;
      border-radius: 30rpx;
      text-align: center;
    }
    //去除自带的butto样式,如果不加这个,会覆盖,导致边框加宽
    .location::after {
      border: none;
    }
    

    相关文章

      网友评论

          本文标题:小程序为button设置边框(去除本身边框样式)

          本文链接:https://www.haomeiwen.com/subject/gnfeyqtx.html