Click to See Complete Forum and Search --> : Question about table border


haan
09-27-2003, 07:11 AM
In the html below there is a table of 2x2 with a border of 1px. Is there a way to have the border on the right hand side 0px and all other border sides 1px?

This is the HTML:<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="generator" content="Adobe GoLive 4">
<title>Welcome to Adobe GoLive 4</title>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#f74949">
<tr>
<td>a</td>
<td>b</td>
</tr>
<tr>
<td>c</td>
<td>d</td>
</tr>
</table>

</body>
</html>

gil davis
09-27-2003, 08:18 AM
<table cellpadding="0" cellspacing="0" style="border: solid #f74949; border-top-width: 1px; border-left-width: 1px; border-bottom-width: 1px; border-right-width: 0px">

haan
09-28-2003, 01:43 AM
Thanks!