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
CSSO strips all but the last declaration of overflow within a declaration block. So,
overflow
.selector { overflow: auto; overflow: overlay; }
becomes the following:
.selector { overflow: overlay; }
Declaring overflow twice is needed for UAs that do not support the overlay value.
overlay
This was tested with CSSO v3.5.0 and with 4.0.3 (online).
The text was updated successfully, but these errors were encountered:
2e4952e
No branches or pull requests
CSSO strips all but the last declaration of
overflow
within a declaration block. So,becomes the following:
Declaring
overflow
twice is needed for UAs that do not support theoverlay
value.This was tested with CSSO v3.5.0 and with 4.0.3 (online).
The text was updated successfully, but these errors were encountered: