I am working on updating a legacy web application that is specifically targeted for IE 6. Currently, I am re-skinning the interface and replacing the default browser button look with a blue button image.
While my HTML and CSS code works perfectly in IE 8, it's not displaying correctly in IE 6.
HTML
<button id="add">Add</button>
CSS
button
{
width: 110px;
height: 28px;
background-image: url('../images/button.png');
background-color: transparent;
border: 0px none #ff0000;
cursor: hand;
font-family: Myriad Pro, Helvetica;
font-weight: bold;
font-size: 12px;
color: #ffffff;
}
Does anyone know how to modify the CSS to make the background image appear in IE 6?
It would be most helpful if the solution could be implemented in an ie6.css file for easy removal when support for IE 6 is discontinued.
I kindly request no suggestions about dropping IE 6 support. This application is intended only for IE 6 and is used exclusively within an organization where IE 6 is the sole supported browser.