Simple example:
....
<td><a class="abc" href="#"></a></td>
....
[css]
..abc{
display:block;
margin:0;
padding:0;
width:100%;
height:100%;
}
..abc a:hover{
background:#069 ;
}
IE display it correctly, but only in quirks mode. In standard mode <a>
is moved some few fixel to left side.
Is there any solution to fix it ?
--
Regards,
Caesar
....
<td><a class="abc" href="#"></a></td>
....
[css]
..abc{
display:block;
margin:0;
padding:0;
width:100%;
height:100%;
}
..abc a:hover{
background:#069 ;
}
IE display it correctly, but only in quirks mode. In standard mode <a>
is moved some few fixel to left side.
Is there any solution to fix it ?
--
Regards,
Caesar
Comment