PDA

View Full Version : Vert table lines & font:norm


zoobie
09-20-2002, 03:25 AM
2 quick q's...

Why do vertical lines show up in my table cells and what's the css for a regular (not bold) font? font:norm 12px arial isn't working.

Thanks

<table width="95%" cellpadding="0" cellspacing="0" border="2" bordercolor="#ff0000">
<tr>
<td width="33%">
data
</td>
<td width="34%">
data
</td>
<td width="33%">
data
</td>
</tr>
</table>

umm
09-20-2002, 04:22 AM
Q1: Vertical Lines. Probably because each cell has a border. To remove the vertical lines try this:
<table width="95%" cellpadding="0" cellspacing="0" rules="rows" bordercolor="#ff0000">

Q2:
font-weight: normal

zoobie
09-20-2002, 05:53 AM
Heh heh...forgot the "al" in normal...Thx :D