I'm trying to display some images in a div table, but I keep getting the border on the bottom of each image. It's about 2-5 pixels.
I'd send an image, but I'm a new user.
I want to remove this border.
The image is 52 x 10 exactly.
I'm only in IE8 for this app.
edit: I'm doing a larger layout- I just boiled the code down to the single problem I'm having, which is the border at the bottom of the table.
/*tables*/
.WorkFlowTableStyleA
{
display: table;
width: 10px;
border-collapse:collapse;
border-style: none;
}
/*rows*/
.WorkflowRowStyleA
{
display: table-row;
height: 52px;
}
/*arrow containers*/
.WorkflowCellArrowHolderA
{
display: table-cell;
width: 10px ;
}
<div class="WorkFlowTableStyleA">
<div class="WorkflowRowStyleA">
<div class="WorkflowCellArrowHolderA" style="background-color: Black;">
<img src="../../Images/Flowchart/spacerTestTenByFiftyTwo.png" />
</div>
</div>
</div>
<div class="WorkFlowTableStyleA">
<div class="WorkflowRowStyleA">
<div class="WorkflowCellArrowHolderA" style="background-color: Black;">
<img src="../../Images/Flowchart/spacerTestTenByFiftyTwo.png" />
</div>
</div>
</div>