我用了
border : none
在焦点、活动和悬停时,我仍然在按钮周围看到这个黑色边框,按钮还有其他状态吗?
如何使用 css 去除点击时的黑色边框。
这个属性叫什么,例如如何改变它的颜色?
.clean-label {
background-color: white;
color: #29abe2;
border: none;
margin-left: 8px;
text-decoration: none;
}
.clean-label:active {
border: none;
text-decoration: none;
}
.clean-label:hover {
border: none;
text-decoration: none;
}
.clean-label:focus {
border: none;
text-decoration: none;
}
<button class="clean-label">кнопка без каймы</button>
利用