View Full Version : Dashed Table


evalopez
10-09-2005, 01:53 AM
I want my table to be dashed outside, as well as between cells. How would I do this?

http://www.sol-martin.com/newsite is what you see now.

my css for the table reads:

.table {
border-style: dashed;
border-width: 1px;
}

Douglas
10-09-2005, 01:57 AM
for every td just put this in the css file:
.td {
border: dashed 1px;
}

and remove the .table { balh } ok? then on every td tag:

<td class="td">TEXT</td>

EDIT: 1,111 posts :D

evalopez
10-09-2005, 02:10 AM
Thanks. I got it to work, but I slightly tweaked your response to make it work. I could only get it with

.td {
border: dashed;
border-width: 1px;
}

using them on the same line made nothing appear.

Douglas
10-09-2005, 02:18 AM
ok, but i dont no why it didnt work... it might have been the order or something :D