I am styling some buttons for an internal application that uses IE6 only.
I would like to switch out the button on hover, because IE6 doesn't
support hover I am wondering there is a work around to make IE6 work
with hover, preferably CSS if not very simple js
Here is the button
<button id="send" title="xxx" onclick="a('abc')" alt="xxx"><img
src="images/arrow_right.gif" alt="xxx title="abc" /></button>
Here is the CSS
#send
{
display:inline-block;
width: 25px;
height: 25px;
background: url("images/arrow_right.gif") no-repeat 0 0;
}
#send:hover
{
background-position: 0 -23px;
background: url("images/arrow_right_select.gif") no-repeat 0 0;
}
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/