I have a question about CSS selectors.
In my CSS file I have the following code:
.table_legenda th, td { text-align: left; vertical-align: top;
it selects tr inside table_legenda class , and in addition to that, all td.
tr inside table_legenda class
td
The selector you want is
.table_legenda th, .table_legenda td
In this one, it selects all the th inside .table_legenda and all td inside .table_legenda
th inside .table_legenda
td inside .table_legenda