Suppose I have different views. They have some common parts and some specific ones. Can I make my code clearer?
.View1 th, td { padding: 5px; }
.view2 th, td { padding: 5px; }
I've looked through different resources but haven't found anything proper.
Something like (if it worked):
.View1 th, td, .View2 th, td { padding: 5px; }