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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top