argyleink / open-props

CSS custom properties to help accelerate adaptive and consistent design.
https://open-props.style
MIT License
4.8k stars 192 forks source link

add `hanging-punctuation` #442

Open jacobdalamb opened 1 year ago

jacobdalamb commented 1 year ago

https://caniuse.com/?search=hanging-punctuation https://chriscoyier.net/2023/11/27/the-hanging-punctuation-property-in-css/ for blockquote and related elements

argyleink commented 12 months ago

nice! like adding this to normalize is what you're thinking?

blockquote {
  hanging-punctuation: first last;

  &::before {
    content: open-quote;
  }

  &::after {
    content: close-quote;
  }
}