A table with no right border colour

M

Marianne

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

Marianne
 
M

Matthias Gutfeldt

Marianne said:
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
 
M

mscir

Marianne said:
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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top