doiuse
Version:
Lint CSS for browser support against caniuse database
13 lines (11 loc) • 447 B
JavaScript
/**
* CSS justify-content: space-evenly
* The "space-evenly" value for the `justify-content` property distributes the space between items evenly. It is similar to space-around but provides equal instead of half-sized space on the edges. Can be used in both CSS flexbox & grid.
* @see https://caniuse.com/justify-content-space-evenly
*/
/**
* @type {import('../features').Feature}
*/
export default {
'justify-content': 'space-evenly',
};