Left border show on the top border of other cell table when use border-collapse: collapse.
"Diego ." <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <CAD0qOrS=E=OZbz8_ouufovVKm4RswqU3F6cFkKMhb2iooqN_ng@mail.gmail.com> |
Hello. I have find a this playing with border-collapse: collapse. Left border show on the top border of other cell table. the attachment have minimal code html that breaks Sorry for my english Salud! Diego _______________________________________________ Dillo-dev mailing list [email protected] http://lists.dillo.org/cgi-bin/mailman/listinfo/dillo-dev
y.html
(text/html, 678 B)
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
<html>
<head>
<title> titulo de la pagina </title>
<style type="text/css">
table {width: 100%;}
table.tab { border-collapse: collapse; }
td.cover_tab {border: solid black; text-align: center; background-color: #A0A0A0; }
td.show_tab {border: none; text-align: center;}
</style>
</head>
<body id="dillo_prefs">
<table class='tab'>
<tr>
<td class="cover_tab"> 0
<td class="show_tab"> 1
<td class="cover_tab"> 2
<td class="cover_tab"> 3
</table>
<br>
<table class='no_tab'>
<tr>
<td class="cover_tab"> 0
<td class="show_tab"> 1
<td class="cover_tab"> 2
<td class="cover_tab"> 3
</table>
</body>
</html>