这是我的代码,
<input type="text" style="font-family: Tahoma; height:24px; width:300px; font-size: 12px; padding: 0 0 0 10px;" placeholder="Full Name" >
输入时如何防止突出显示输入字段?
答案 0 :(得分:2)
尝试这样的事情......
input {
outline:none;
}
答案 1 :(得分:1)
尝试(请不要写样式内联):
的CSS:
#inp {
font-family: Tahoma; height:24px; width:300px; font-size: 12px; padding: 0 0 0 10px;
}
#inp:focus {
outline: none;
}
HTML:
<input id="inp" type="text" placeholder="Full Name" >
答案 2 :(得分:1)
CSS:
轮廓是元素聚焦时显示的边框。如果即使文本输入处于活动状态也不希望样式发生任何变化,请使用此
outline:0;