I'm trying to solve a problem with IE8 - IE6, 7, FF etc are ok.
I have styled a number of input boxes with a thin border so that the input box is seen easily on the white background. The border doesn't show in IE8 though.
Below is some typical code and the styling. Can anyone help me resolve why this is happening and what to do to fix it for IE8 please?
I have styled a number of input boxes with a thin border so that the input box is seen easily on the white background. The border doesn't show in IE8 though.
Below is some typical code and the styling. Can anyone help me resolve why this is happening and what to do to fix it for IE8 please?
Code:
<input type="text" id="QS" onfocus="this.value='';" value="Quick Search" size="15" name="SS"/> #QS { border:thin solid #CCCCCC; } .searchfield { margin-top:-2px; padding:0; }
Comment