我注意到,如果为输入元素提供背景色,则框的外观会更改为包括插入效果。

CSS:

input#input1 {
}
input#input2 {
    background-color:white;
}


HTML:

<input id="input1" value ="1">
<input id="input2" value ="2">


有没有一种方法可以使输入框的背景变色而不会产生插入效果?

参考网址:http://jsfiddle.net/aBus6/1/

谢谢

最佳答案

添加您自己的边框可以解决以下问题:

  border-color:grey;
  border-width:1px;
  padding:2px;

关于html - 如何在不产生插入效果的情况下为输入框着色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20026545/

10-12 00:07