CSS3 Selectors
Hi,
I've used CSS 3 Selectors in css file as below:
INPUT[type="button"], INPUT[type="submit"], INPUT[type="reset"]
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9pt;
color:#990000;
background-color:#FFFFFF;
border: solid 1px #990000;
padding: 3px 4px 3px 4px;
}
But, it only works in IE7, how should I change it to work in IE6?
|