If a table is set to have a border at a high level, how can I ensure that classes inheriting from it do not have any borders set?
table,td,th {
border: 1px solid #0B6121;
}
How can I make sure that my other table has no borders at all?
table.menu {
border: none;
/* and no border for td */
/* and no border for th */
}