Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Preserve double 'overflow' declaration #415

@jmwebservices

Description

@jmwebservices

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions