T
tshad
I am trying to set up various grids with different displays and don't want
to set each row and column individually.
Right now I use the following in my css page:
table {
border-collapse: separate;
border-color:#999999
}
th {
background-color:#000000;
color:white;
text-decoration: none;
border-style:none;
vertical-align:bottom;
font-size:14px;
}
td {
empty-cells: show;
text-align:left;
}
But this sets all the tables in the application the same.
What I am trying to do is something like:
standard.table
standard.td
standard.th
customer.table
customer.td
customer.th
client.table
client.td
client.th
Is there a way to do something like this and just assign one of the 3 to a
particular table using css?
Thanks,
Tom
to set each row and column individually.
Right now I use the following in my css page:
table {
border-collapse: separate;
border-color:#999999
}
th {
background-color:#000000;
color:white;
text-decoration: none;
border-style:none;
vertical-align:bottom;
font-size:14px;
}
td {
empty-cells: show;
text-align:left;
}
But this sets all the tables in the application the same.
What I am trying to do is something like:
standard.table
standard.td
standard.th
customer.table
customer.td
customer.th
client.table
client.td
client.th
Is there a way to do something like this and just assign one of the 3 to a
particular table using css?
Thanks,
Tom