按钮的边框不能去掉吗?

发布于 7 年前作者 li3018055 次浏览最后编辑 7 年前来自 ask

样式给了border:none;可是边框还是一直都在

6 回复
guming
guming1 楼6 年前

边框给颜色也是没变化

guiyingwei
guiyingwei2 楼6 年前

button::after{

content: none;

}

这样就好了。

leizhou
leizhou3 楼6 年前

<button class=“hide-button” plain=“true” form-type=“submit”></button>

给button添加 plain=“true”属性  并且添加以下样式

.hide-button {

border:none !important;

}    

leiyan
leiyan4 楼6 年前

123

cmo
cmo5 楼6 年前

button[plain]{

border: none;

}

xiuying18
xiuying186 楼5 年前

伪元素