I'm currently using CSS to style a hyperlink in order to give it the appearance of a button. This is for a .NET website.
a.pretend
{
display:inline-block;
border-top:1px solid #CCCCCC;
border-left:1px solid #CCCCCC;
border-bottom:1px solid #999999;
border-right:1px solid #999999;
background-color:#E7F3F1;
padding:3px 8px;
color:Black;
text-decoration:None;
cursor:pointer;
}
When I view pages with these styled buttons on my development machine using IE 9.0, they display with the correct background color.
However, when I publish the site to a production server on our local network and view the site from my development machine using the same browser, the background-color no longer appears.
I'm at a loss for what could be causing this issue. Please refrain from suggesting that I switch browsers, as this is an intranet site and I am required to use IE.
The DocType is XMTML1.0 Transitional.
Any advice or assistance would be greatly appreciated. Thank you!