How to make top border dissapear?

Discussion in 'HTML & Website Design' started by vbwiz, Aug 9, 2006.

  1. #1
    I use the table comment and I need to make the top border dissapear, please help.
     
    vbwiz, Aug 9, 2006 IP
  2. JasonBartholme

    JasonBartholme Peon

    Messages:
    396
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Here ya go. This works fine in FireFox

    <head>
    <style type="text/css">
    <!--
    .notopborder {
    border-top-style: none;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    color: #000000;
    }
    -->
    </style>
    </head>
    <body>

    <table cellpadding="0" cellspacing="0" width="500" class="notopborder" >
    <tr>
    <td>Column 1</td>
    <td>Column 2</td>
    </tr>
    </table>
     
    JasonBartholme, Aug 9, 2006 IP