Closed jmwebservices closed 4 years ago
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).
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).