We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This plugin combines declarations into shorthands:
inset-block-start: 10px; inset-block-end: 15px; inset-inline-start: 20px; inset-inline-end: 25px; /* becomes */ inset-block: 10px 15px; inset-inline: 20px 25px;
But the following case is not supported by browsers and as a consequence break the styles.
inset-block-start: unset; inset-block-end: 15px; inset-inline-start: 20px; inset-inline-end: unset; /* becomes */ inset-block: unset 15px; inset-inline: 20px unset;
What to do:
inherit
initial
revert
revert-layer
unset
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This plugin combines declarations into shorthands:
But the following case is not supported by browsers and as a consequence break the styles.
What to do:
inherit
,initial
,revert
,revert-layer
andunset
. Do not merge if any of them includes these.The text was updated successfully, but these errors were encountered: