Discussion:
table border color/Mozilla
(too old to reply)
opaiev
2003-08-19 07:38:46 UTC
Permalink
How do you set a table border color that is compatable with Mozilla browsers?

Thanks!
osgood
2003-08-19 08:38:53 UTC
Permalink
Post by opaiev
How do you set a table border color that is compatable with Mozilla browsers?
Thanks!
Cut code below, paste between <head> tags of your page code. Select
applicable table tage in bottom left hand corner of DW design view. Open
css selector and choose the style tableborder.

Change attributes to suite ie px width, color, line style

<style type="text/css">
.tableborder {
border-top: 1px solid #ff3030;
border-right: 1px solid #ff3030;
border-left: 1px solid #ff3030;
border-bottom: 1px solid #ff3030;
}
</style>

Loading...