[csswg-drafts] Syntax request: 'Property lists' (#7562)

kellytk has just created a new issue for https://github.com/w3c/csswg-drafts:

== Syntax request: 'Property lists' ==
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;
    }

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7562 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 3 August 2022 06:20:26 UTC