Bootstrap

微信小程序开发,修改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;
}
 

;