Mozilla CSS/Table-Rendering Problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • P. Keyes

    Mozilla CSS/Table-Rendering Problem

    I'm trying to get the css to render a border specific to a table row,
    but in Mozilla 1.3 and Netscape 7 nothing happens. Shows up fine in IE5. I
    haven't been able to find any info on this specific issue in the
    archives, but if there is some bug I'd appreciate hearing about it. If
    there's a problem with my code, of course, I would be even more grateful
    to hear about it.

    Paul Keyes

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Untitl ed Document</title>
    <style type="text/css">
    <!--
    ..border-test {
    border-top-width: thin;
    border-right-width: thin;
    border-bottom-width: thin;
    border-left-width: thin;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-top-color: #000000;
    border-right-color: #000000;
    border-bottom-color: #000000;
    border-left-color: #000000;
    }
    -->
    </style>
    </head>

    <body>



    <table width="100%">
    <tr class="border-test">
    <td width="7%" align="center" valign="top"><i mg
    src="images/mapping2.gif"></td>
    <td width="18%">Map ping Data</td>
    <td width="75%">
    <table width="100%" cellpadding="3" >
    <tr>
    <td width="4%">&nbs p;</td>
    <td width="36%">
    <a href="data/tf/tranf.csnps.txt ">SNP Locations</A>
    </td>
    <td width="26%"><a
    href="http://pga.gs.washingt on.edu/data/c2/c2.ColorFasta.h tml">Color
    FASTA</a></td>
    <td width="34%"><a
    href="cDNA">cDN A</a></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td> <a
    href="data/tf/TRANF.primers.f asta">PCR Primers (FASTA)</A></td>
    <td><a
    href="http://pga.gs.washingt on.edu/data/c2/comp2.snpcontex t.fasta">SNP
    Context</a></td>
    <td>GENE LINKS</td>

    </tr>
    <tr><td colspan="4">&nb sp;</td></tr>
    </table></td>
    </tr>
    </table>
    </body>
    </html>


Working...