> That wont work I can't put border-style: none; That would get 
> rid of the thing orange border I want to create!

It does work. I think David means that you should do this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<html>
<head>
<title>Untitled</title>
<style type="text/css">
/* <![CDATA[ */
table.thinOrangeBorder {
  border-width: 0px;
  border-spacing: 2px;
  background-color: white;
}
table.thinOrangeBorder th {
  border-width: 1px;
  padding: 0px;
  border-style: solid;
  border-color: #F26F31;
  background-color: white;
}
table.thinOrangeBorder td {
  border-width: 1px;
  padding: 0px;
  border-style: solid;
  border-color: #F26F31;
  background-color: white;
}
table.thinOrangeBorder table td {
    border: none;
}
/* ]]> */
</style>
</head>
<body>
<table class="thinOrangeBorder">
  <tr>
    <td>
      <table>
        <tr>
          <td>
TD nested inside thinOrangeBorder table with no style.
          </td>
        </tr>
      </table>
    </td>
    <td>
      <table>
        <tr>
          <td>
TD nested inside thinOrangeBorder table with no style.
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>

<table>
  <tr>
    <td>
TD outside thinOrangeBorder table with no style.
    </td>
  </tr>
</table>
</body>
</html>



___________________________________________________________
$0 Web Hosting with up to 200MB web space, 1000 MB Transfer
10 Personalized POP and Web E-mail Accounts, and much more.
Signup at www.doteasy.com

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to