Posts Tagged css
Hover effect on input element in IE6
Posted by Imran in Browser Compatibility, HTML, Javascript on March 17th, 2010
If you have ever tried to put a hover effect on any input element (submit, button etc) using css you must have faced the problem when you tested on IE6. Generally following is the css code we use to add the hover effect:
input.inputClass{background-color:#cccccc;color:#000000;}
input.inputClass:hover{background-color:#000000;color:#ffffff;}
This would change the background color and text color of any input field [...]
