Can we prevent repeating the same CSS declaration?
Is there a way to combine table th
and table td
under a single weather-component
?
weather-component table th,
weather-component table td {
text-align: center !important;
}
Could it be done like this?
weather-component (table th, table td) {
text-align: center !important;
}