Hi, I got following CSS:
.Resource table.Tbl td
{ /* some css*/ }
.Resource table.Tbl td.num
{ /* some css 2*/ }
.Resource table.Tbl td.num span.icon
{ /* some css 3*/ }
.Resource table.Tbl2 td
{ /* some css*/ }
.Resource table.Tbl2 td.num
{ /* some css 2*/ }
.Resource table.Tbl2 td.num span.icon
{ /* some css 3*/ }
where the CSS for Tbl and Tbl2 should be the same.
.Resource table.Tbl, table.Tbl2 td { /* some css*/ }
doesn't work.
How can I achieve this, without duplicating whole line?