doiuse
Version:
Lint CSS for browser support against caniuse database
16 lines (14 loc) • 329 B
JavaScript
/**
* Method of defining how a background image is attached to a scrollable element. Values include `scroll` (default), `fixed` and `local`.
*
* See: https://caniuse.com/background-attachment
*/
/**
* @type {import('../features').Feature}
*/
export default {
'background-attachment': [
'fixed',
'local',
],
};