I have a problem with the implementation of a CSS style
I am developing for IE only (not NN)
It looks fine in IE5.5 and IE6
I am trying to make make a dividing center line
but in IE5.0 the grey border has a 1 pixel gap at the bottom of each cell, even though 'border-style: solid;'
This makes it look like a dashed line down the side of the table
the style is:
.tableshadowborder {
border-color: #A5A5A5;
border-style: solid;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
background-color: #F5F8FC;
}
an example row where it is implemented is:
If several rows are copied, the dashed effect can be observed
maybe someone else has encountered this before
Please help it is driving me insane
I am developing for IE only (not NN)
It looks fine in IE5.5 and IE6
I am trying to make make a dividing center line
but in IE5.0 the grey border has a 1 pixel gap at the bottom of each cell, even though 'border-style: solid;'
This makes it look like a dashed line down the side of the table
the style is:
.tableshadowborder {
border-color: #A5A5A5;
border-style: solid;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
background-color: #F5F8FC;
}
an example row where it is implemented is:
Code:
<tr>
<td class="bodysmalllight" valign="top" height="24" width="189">Previously used post '83 tax free threshold</td>
<td class="textbox" width="177">
<input class="textboxr" size="20"><td>
<td class="textbox" width="40"> </td>
<td class="tableshadowborder" valign="top" width="14"> </td>
<td class="tableshadow" width="225"> </td>
<td class="tableshadow" width="72"> </td>
<td class="tableshadow" width="33"> </td>
</tr>
If several rows are copied, the dashed effect can be observed
maybe someone else has encountered this before
Please help it is driving me insane