I have a hyperlink on my page:
<div id="ContainerDIV">
<a href="#" id="hlkTest" class="imgLink" title="Test" />
</div>
and
a.imgLink#hlkTest {
background-image: url(Images/DOS.png);
}
a.imgLink {
width: 67px;
height: 80px;
background-position: 0px;
background-repeat: no-repeat;
margin-right: 0.45em;
margin-bottom:0.5em;
}
#ContainerDIV
{
padding-left:2.5em;
padding-top:0.0em;
width:90%;
}
The image is visible when page opened with IE in Quirks mode but not visible in a standard mode and/or in Chrome. I have been trying to figure out what CSS is only working in Quirks mode. Can anyone help?