C Neg
2007-07-26 00:42:44 UTC
I've tried everything. I have used all the border tricks I can think of in CSS...I've even done the cellpadding="0" cellspacing="0" border="0" as attributes trick in the containing table and inner tables...no luck. What's going on?? This is in firefox 2.0.whatever.
Table.container
{
border-collapse: collapse;
border-spacing: 0;
border-width: 0px 0px 0px 0px;
background-color: lightblue;
}
td.pixel:hover
{
font-size: 12px;
background-color: red;
color: red;
border-collapse: collapse;
border-spacing: 0pt 0pt;
border-style: none;
padding: 0px 0px 0px 0px;
width: 12px;
height: 12px;
empty-cells: show;
border-width: 0px 0px 0px 0px;
}
I know border-width is probably actually wrong, but it doesn't work with or without it.