美文网首页微信小程序前端xuexi微信小程序开发者
微信小程序 button 去掉圆角或边框

微信小程序 button 去掉圆角或边框

作者: chenxuxu | 来源:发表于2018-07-24 18:46 被阅读1次

去掉圆角

去掉圆角效果图

需要在xxx.wxss里,添加个::after,并且两个地方都需要 border-radius: 0; 才有效

    <!-- xxx.wxml -->
    <button class='btn'>我是按钮</button>

    /* xxx.wxss */
    .btn {
      margin: 30rpx;
      background: white;
      border-radius: 0;
    }

    .btn::after {
      border-radius: 0;
    }

去掉边框

去掉边框效果图

也需要在xxx.wxss里,添加个::after,但只需在::after样式类添加border: none;即可

    <!-- xxx.wxml -->
    <button class='btn'>我是按钮</button>

    /* xxx.wxss */
    .btn {
      margin: 30rpx;
      background: white;
    }

    .btn::after {
      border: none;
    }

相关文章

网友评论

    本文标题:微信小程序 button 去掉圆角或边框

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