-1

这是我的代码,

<input type="text" style="font-family: Tahoma; height:24px; width:300px; font-size: 12px;  padding: 0 0 0 10px;" placeholder="Full Name" >

输入时如何防止突出显示输入字段?

4

3 回答 3

2

尝试这样的事情......

input {
    outline:none;
}
于 2012-12-25T08:32:43.520 回答
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" >
于 2012-12-25T08:33:51.097 回答
1

CSS:

轮廓是元素聚焦时显示的边框。如果即使文本输入处于活动状态,您也不希望样式发生任何变化,请使用此

outline:0;
于 2012-12-25T08:43:04.530 回答