美文网首页微信小程序
unai-app 按钮去掉边框

unai-app 按钮去掉边框

作者: 请不要念出我的名字 | 来源:发表于2020-12-03 14:44 被阅读0次
    <view class="content">
            <button class="registerBtn" type="default"  @click="goto(url)">注册</button>
        </view>
    

    在style里面设置按钮的样式,button::after中去掉边框

    <style>
        button::after{
            border: none;
        }
        .registerBtn{
            margin-top: 60upx;
            margin-right: 30upx;
            width: 120upx;
            height: 60upx;
            font-size: 13px;
            background-color: #FFFFFF;
            color: #000000;
        }
    </style>
    

    相关文章

      网友评论

        本文标题:unai-app 按钮去掉边框

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