GitHub - jantimon/text-box-trim-examples: text-box-trim examples and playground (previously known as leading-trim)
CSS Text Box Trim
CSS Text Box Trim is a CSS property that allows you to remove the leading whitespace from a block of text. This is useful for removing the space between the top of the text and the top of the container.
🚨 text-box-trim is the new name for leading-trim: w3c/csswg-drafts#8067 (comment)
Usage
.text-box-trim {
text-box-trim: both;
text-box-edge: cap alphabetic;
}
Playground
text-box-trim is right now only supported by Safari Technology Preview with the old leading-trim name.
But y...
Read more at github.com