Always wondered this?

Josh Simpson's picture

They have: 147 posts

Joined: Dec 1999

How do you get rid of the "3d effect" netscape puts on table borders, at the moment I have this

<table width="100%" border="4" cellspacing="0" cellpadding="0" bordercolor="#FF0000">
'
Thanks

JLS (Joshua Lee Simpson)

Mark Hensler's picture

He has: 4,048 posts

Joined: Aug 2000

you can't do it with that table....
you have to nest...

<table bgcolor="ff0000" border=0 cellspacing=0 cellpadding=0>
<tr>
  <td>
     <table border=0 cellspacing=1 cellpadding=0>
      <tr>
       <td bgcolor="0000ff">
          blah blah
       </td>
      </tr>
  </td>
</tr>
</table>
'
This will make a one cell blue table with a one pixel red border. Modify to suit.

Mark Hensler
If there is no answer on Google, then there is no question.

Josh Simpson's picture

They have: 147 posts

Joined: Dec 1999

Hey thanks

But what a anoying way of doing it Sad

Mark Hensler's picture

He has: 4,048 posts

Joined: Aug 2000

Yes, I agree. But I've found no other way of doing it.
Just another browser incompatability we have to put up with.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.