Borders within the table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm working with a three column border. I only want the border to show on the
outside margins, not the between the columns. How do I do this?
 
This can also be done without adding a table or div, using CSS styles. You
set the Border Style for the Table to solid, and set the Border Width Style
to whatever. Example:

<table style="empty-cells: show; width: 100%; border: 2px solid #FFFF00">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>

--
HTH,

Kevin Spencer
Microsoft MVP
Chicken Salad Surgery

What You Seek Is What You Get.
 
Back
Top