Gareth and everyone else:
Thanks for the info. It sure is helping me learn what else I can do with
CSS. Sorry it took so long to respond, but have been out of town doing one
of my other jobs (musician).
Here's where I am so far:
www.lanebaldwin.com/FCTest
First attempt: did exactly as you suggested below. This put a border around
the entire table, but not on the cells...so I had the pink border around the
entire table, but the plain Jane default border in between cells. So...
Second attempt: removed from table and applied to each individual cell. Now
have the border throughout the entire table as originally designed and
implemented w/o CSS. When viewing in IE6, the border looks a bit thicker
than it was originally, but still (I think) looks OK. IN Opera 7.23 and NN
7.1, border appears and is pink...but to my half-blind eyes, appears a
little strange.
Any feedback greatly appreciated.
Lane
"gareth" <gareth (AT) buzzinet (DOT) co.uk> wrote
Quote:
Just create a CSS class eg
.mainTableBorder{
color: #999999;
border: thin solid #999999;
}
and then apply it to the table tag eg
table class="mainTableBorder"
--
Gareth |