Skip to content
New issue

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

Preserve double 'overflow' declaration #415

Closed
jmwebservices opened this issue Apr 26, 2020 · 0 comments
Closed

Preserve double 'overflow' declaration #415

jmwebservices opened this issue Apr 26, 2020 · 0 comments

Comments

@jmwebservices
Copy link

jmwebservices commented Apr 26, 2020

CSSO strips all but the last declaration of overflow within a declaration block. So,

.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.

This was tested with CSSO v3.5.0 and with 4.0.3 (online).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants