Selector lists (https://www.w3.org/TR/selectors-4/, 4.1) are helpful to avoid repetition of declarations applicable to multiple elements.
Similarly, property lists would be helpful to avoid repetition of values applicable to multiple properties in the same declaration block.
.old {
padding-left: 1rem;
padding-right: 1rem;
}
.new {
padding-left, padding-right: 1rem;
}
Selector lists (https://www.w3.org/TR/selectors-4/, 4.1) are helpful to avoid repetition of declarations applicable to multiple elements.
Similarly, property lists would be helpful to avoid repetition of values applicable to multiple properties in the same declaration block.