Forum Moderators: not2easy
<table>
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>4</td><td>5</td><td>6</td></tr>
<tr><td>7</td><td>8</td><td>9</td></tr>
</table>
<style type=text/css>
table {border:1px solid black; border-spacing:0px}
td {border:1px solid silver; padding:10px}
</style>
Curiously, the border-collapse version works if I change the cell border style to "dotted". In that case the black border magically appears.
narrow borders are discarded in favor of wider ones. If several have the same 'border-width' then styles are preferred in this order: 'double', 'solid', 'dashed', 'dotted', 'ridge', 'outset', 'groove', and the lowest: 'inset'
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>double border</title>
<style type="text/css">
table {
border:1px double #000;
border-collapse:collapse;
}
td {
padding:10px;
border:1px solid #c0c0c0;
}
</style>
</head>
<body>
<table><tr>
<td>1</td><td>2</td><td>3</td>
</tr><tr>
<td>4</td><td>5</td><td>6</td>
</tr> <tr>
<td>7</td><td>8</td><td>9</td>
</tr></table>
</body>
</html>
No problem, you're very welcome. ;)