收藏
回答

为什么在view中添加一个botton字体会被加粗左边也有边距了?

回答关注问题邀请回答
收藏

1 个回答

  • 沉冰
    沉冰
    2020-12-24

    button有默认样式的

    建议这样写

    view

    <view class='view'>
        <button class='button' open-type='share'></button>
        分享
    </view>
    

    css

    .view{
      position: relative;
      color#333;
    }
    .view .button{
      position: absolute;
      width100%;
      height100%;
      z-index1;
      opacity0;
    }
    .view .button::after{
      display: none;
    }
    
    2020-12-24
    有用
    回复
登录 后发表内容
问题标签