Post by opaievHow 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>