Bootstrap

微信小程序中原生button 样式的覆盖

开发微信小程序的过程中 发现 需要使用button 的open-type 

但是 原生的小程序button 放那里又太丑了 所以现在 需要覆盖原生的button 样式

.resetbtn {
    padding: 0;
    margin: 0;
    font-size: inherit;
    background: rgba(0, 0, 0, 0);
    width: 100% !important;
    height: 100%;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    color: inherit;
    overflow: auto;
    border-radius: 0;
    text-align: inherit;
    overflow: hidden;
    position: relative;
    font-weight: normal;


}

button:after {
    content: none;
}

这段代码牛逼

;