一、按钮的默认样式

// 默认样式

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;

}

复制代码

二、清除按钮的默认样式(小程序也适用)

button::after {

border: none;

}

复制代码

实现效果 : 就是把它当做一个灵活的view/div 一样使用

css

.ser-son button::after {

border: none;

}

.ser-son button {

position: relative;

display: block;

margin-left: auto;

margin-right: auto;

padding-left: 0px;

padding-right: 0px;

box-sizing: border-box;

// font-size: 18px;

text-align: center;

text-decoration: none;

// line-height: 1;

line-height: 1.35;

// border-radius: 5px;

-webkit-tap-highlight-color: transparent;

overflow: hidden;

color: #000000;

background-color: #fff;

width: 100%;

height: 100%;

}

复制代码

1a79f9512f50d89f4f156f38b155f9c6.png

html

联系客服

复制代码

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐