Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

HTML - A table with no right border colour

 
Thread Tools Search this Thread
Old 02-25-2004, 07:59 PM   #1
Default A table with no right border colour


Would it be possible to make a table with black borders exept on the right
side of the table ?

Marianne




Marianne
  Reply With Quote
Old 02-25-2004, 08:10 PM   #2
Els
 
Posts: n/a
Default Re: A table with no right border colour



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 -

  Reply With Quote
Old 02-25-2004, 08:11 PM   #3
Matthias Gutfeldt
 
Posts: n/a
Default Re: A table with no right border colour

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
  Reply With Quote
Old 02-25-2004, 08:32 PM   #4
mscir
 
Posts: n/a
Default Re: A table with no right border colour

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%">&nbsp;</td>
<td width="50%">&nbsp;</td>
</tr>
<tr>
<td width="50%">&nbsp;</td>
<td width="50%">&nbsp;</td>
</tr>
</table>

  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump