标签: html css google-chrome
如果您使用Chrome浏览器,请点击运行代码段,您会发现输入周围有浅蓝色,我想将其删除。 我尝试了border:none和:active以及其他伪类。但它没有用。 顺便说一句,在FF。浅色不存在。
border:none
:active
<input type="text">
答案 0 :(得分:5)
简单地使用它;
input:focus{ outline: 0; }
或从所有元素中删除
*:focus { outline: 0; }