Table and Cell Borders

D

Daniel

I am making a web page that has one table and 6 different cells inside of it.
I want to add a black border to my table, but everytime i try to do that in
the page properties, it adds a border to all of the cells as well. How can I
just add a border to the table without the same thing applying to the cells
inside?
 
T

Tom Willett

The safest thing to do so that it's compatible on all browsers, is to make a
master table of one cell, and color those borders. Then, put the 6-cell
table inside it.
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
|I am making a web page that has one table and 6 different cells inside of
it.
| I want to add a black border to my table, but everytime i try to do that
in
| the page properties, it adds a border to all of the cells as well. How
can I
| just add a border to the table without the same thing applying to the
cells
| inside?
| --
| Daniel R
 
M

Murray

CSS would be even safer, and more compatible, and would involve less markup.
Border color is not valid HTML, and will only be rendered in IE.
 
I

Izod

Woww. I've got to learn something about CSS. I hear a lot about it,
but don't have the slightest idea how to start thinking about coding it.
I've had this same problem that Daniel has..... IZOD
 
D

Daniel

got it! the inline style worked perfectly. Thanks again Ronx, Murray and
Tom for your help. It was greatly appreciated
 
Top