uniapp——小程序button按钮各种默认样式,修改按钮的默认样式
程序员文章站
2022-06-10 14:53:27
一、按钮的默认样式// 默认样式button {position:relative;display:block;margin-left:auto;margin-right:auto;padding-left:14px;padding-right:14px;box-sizing:border-box;font-size:18px;text-align:center;text-decoration:none;line-height:1;border-radiu...
一、按钮的默认样式
// 默认样式
button {
position:relative;
display:block;
margin-left:auto;
margin-right:auto;
padding-left:14px;
padding-right:14px;
box-sizing:border-box;
font-size:18px;
text-align:center;
text-decoration:none;
line-height:1;
border-radius:5px;
-webkit-tap-highlight-color:transparent;
overflow:hidden;
color:#000000;
background-color:#fff;
}
// 边框样式
button::after{
border: 0;
}
// 禁用时样式
button[disabled] {
background-color: #fff;
color: #666;
}
// 点击时样式
.button-hover {
color:rgba(0, 0, 0, 0.6);
background-color:#fff;
}
二、清除按钮的默认样式(小程序也适用)
css样式:
button::after {
border: none;
}
html代码
<button hover-class='none'>发表</button>
本文地址:https://blog.csdn.net/World_Mei/article/details/107526174
上一篇: 我刚刚才完全清楚GPS模块的那根杆子是怎么固定安装好的
下一篇: 作用域,作用域链&&闭包