here is my css
table#bartb {
border : 1px solid;
width : 100%;
}
table#bartb td {
border : 1px solid;
color : #ffffff;
padding : 0px;
margin : 0px;
background : #679999;
text-align : right;
font : bold white xx-small Verdana, Arial, Helvetica, sans-serif;
}
here is my html
<table id=bartb>
<tr>
<td>Empty cell row</td>
<td> </td>
</tr>
</table>
I found that the border of the second cell is not printed. How can I
get it printed?
Thanks,
qq
table#bartb {
border : 1px solid;
width : 100%;
}
table#bartb td {
border : 1px solid;
color : #ffffff;
padding : 0px;
margin : 0px;
background : #679999;
text-align : right;
font : bold white xx-small Verdana, Arial, Helvetica, sans-serif;
}
here is my html
<table id=bartb>
<tr>
<td>Empty cell row</td>
<td> </td>
</tr>
</table>
I found that the border of the second cell is not printed. How can I
get it printed?
Thanks,
Comment