如何删除选定输入的默认黄色框边框并选择chrome或任何浏览器(如safari)中的字段?我想用自定义框阴影css自定义输入。如何删除默认浏览器选择边框?
-webkit-appearance: none;
并添加自己的风格
textarea, input { outline: none; }
Mixin for Less
.appearance (@value: none) {
-webkit-appearance: @value;
-moz-appearance: @value;
-ms-appearance: @value;
-o-appearance: @value;
appearance: @value;
}
在你的CSS中添加:
input {-webkit-appearance: none; box-shadow: none !important; }
:-webkit-autofill { color: #fff !important; }
仅适用于Chrome! :)
使用简单代码删除大纲的默认浏览器样式
input { outline: none; }
输入:-webkit-autofill {background:#fff!important; }
您是在谈论何时点击输入框而不是将鼠标悬停在输入框上?这为我修好了:
input:focus {
outline: none;
border: specify yours;
}