uni-app button 自定义样式
uni-app CSS About 521 words代码
<template>
<button class="auth-btn" hover-class="none" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">
手机号登录
</button>
</template>
<style>
.auth-btn {
color: white !important;
border: none !important;
background: red !important;
width: 80%;
}
.auth-btn::after {
border: none;
font-size: 28rpx;
}
</style>
说明
主要是被uni-button[type='default']
选择器给定义了样式,所以在自定义CSS
样式需要加上!important
。
可以选择覆盖type='default'
的样式。
Views: 19 · Posted: 2025-08-15
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb/LiteNote扫描下方二维码关注公众号和小程序↓↓↓

Loading...