Table line colours

  • Thread starter Thread starter Dianah
  • Start date Start date
D

Dianah

Is there a way to set the colour for the table border line colours (without
using format, borders, etc.).

I want to apply borders to some parts of the table and using the table
toolbar would be great, except that it just keeps applying a white border.
Format, borders and shading allows me to select colours and lines, but it's
a long way to do it and it applys colours to lines that I don't want (even
when I deselect).

If someone has a tip on how to set the colours for the table toolbar
borders, that would be wonderful.

Thanks. Diana
 
To apply different colors to different borders in the same cell or table you
would
need to use CSS. Create and assign a .class to the cell or table and then
define the colors in the css .class.

example:

..myclass {
border-top: 1px solid red;
border-left: 1px solid blue;
border-bottom: 1px solid green;
border-right: 1px solid purple;
}

Then:
<table class="myclass"
or within the table
<td class="myclass"
hth


--
Steve Easton
MS MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Back
Top