![]() |
|
|
|||||||
![]() |
HTML - A table with no right border colour |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Would it be possible to make a table with black borders exept on the right
side of the table ? Marianne Marianne |
|
|
|
|
#2 |
|
Posts: n/a
|
Marianne wrote: > Would it be possible to make a table with black borders exept on the right > side of the table ? Have you tried at all? -- Els Sonhos vem. Sonhos vão. O resto é imperfeito. - Renato Russo - |
|
|
|
#3 |
|
Posts: n/a
|
Marianne schrieb:
> > Would it be possible to make a table with black borders exept on the right > side of the table ? Yes. table {border:solid 1px black; border-right:none;} Matthias |
|
|
|
#4 |
|
Posts: n/a
|
Marianne wrote:
> Would it be possible to make a table with black borders exept on the right > side of the table ? Try this, adjust the values for different looks: <style type="text/css"> table { border-top: solid 2px #000000; border-left: solid 2px #000000; border-bottom: solid 2px #000000; } TD { border-left: solid 1px #000000; border-bottom: solid 1px #000000; border-top: solid 1px #00000; } </style> <title>Custom Table Borders</title> </head> <body> <table border="0" cellspacing="1" width="60%"> <tr> <td width="50%"> </td> <td width="50%"> </td> </tr> <tr> <td width="50%"> </td> <td width="50%"> </td> </tr> </table> |
|