微信小程序

unai-app 按钮去掉边框

2020-12-03  本文已影响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>
上一篇下一篇

猜你喜欢

热点阅读