HighDots Forums  

- A simple thin white border around a table...

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss - A simple thin white border around a table... in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Jon Yeager
 
Posts: n/a

Default - A simple thin white border around a table... - 11-17-2004 , 04:11 PM






On IE, a simple bordercolor="#FFFFFF" applied in a TABLE tag will show a
thin white border, without embossing (that 3d effect that is on by default).
But in other browsers, it's that embossed outline (3d grey) that shows up.

What do I put in there for it to be plain white more universally, preferably
without using CSS (but if I have no choice, I'll use CSS)?



Reply With Quote
  #2  
Old   
Michael Fesser
 
Posts: n/a

Default Re: - A simple thin white border around a table... - 11-17-2004 , 04:23 PM






.oO(Jon Yeager)

Quote:
On IE, a simple bordercolor="#FFFFFF" applied in a TABLE tag will show a
thin white border, without embossing (that 3d effect that is on by default).
But in other browsers, it's that embossed outline (3d grey) that shows up.

What do I put in there for it to be plain white more universally, preferably
without using CSS (but if I have no choice, I'll use CSS)?
Use CSS. There's no need for deprecated attributes anymore, except maybe
for 'cellspacing', because IE can't do that with CSS (doesn't support
the 'border-spacing' property).

The following applies a white border to the table. Without using a class
or ID it would apply the border to all tables on the page:

HTML:
<table class="foo">...</table>

CSS:
..foo {border: 1px solid #FFF}

Micha


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.