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