doiuse
Version:
Lint CSS for browser support against caniuse database
14 lines (12 loc) • 424 B
JavaScript
/**
* CSS text-box-trim & text-box-edge
* Provides the ability to remove the vertical space appearing above and below text glyphs, allowing more precise positioning and alignment. Previously specified as the `leading-trim` & `text-edge` properties.
* @see https://caniuse.com/css-text-box-trim
*/
/**
* @type {import('../features').Feature}
*/
export default {
'text-box-trim': true,
'text-box-edge': true,
};