Solid table border for both table and cells?

They have: 13 posts

Joined: Oct 2006

I am having trouble at attempting to get a table to have a solid border around the cells as well. I've tried style="border:solid;" before and it only adds a solid border around the table. Is there a solution?

Renegade's picture

He has: 3,022 posts

Joined: Oct 2002

Try this:

table {
position:relative;
margin:0;
padding:0;
border-collapse:collapse;
border-top:1px solid #000;
border-left:1px solid #000;
}

table td {
border-bottom:1px solid #000;
border-right:1px solid #000;
}
'

They have: 13 posts

Joined: Oct 2006

Thanks, it works great.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.