-
Notifications
You must be signed in to change notification settings - Fork 187
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
Пересчёт z-index #30
Comments
Это может вызвать конфликт с другими css, которые подключаются на странице. |
Да, пока не делаю, это только идея. Возможно, станет параметром запуска CSSO, выключенным по умолчанию. |
Можно сделать параметр типа --unsafe (по аналогии с UglifyJS) и туда запихнуть. |
The optimisation is quite dangerous and has negligible effect. I believe there are no reasons to implement it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
В CSS нередко встречаются "условно" большие
z-index
, когда верстальщик пишет "лишь бы большой", например,z-index: 9999
. В погоне за байтами есть смысл собиратьz-index
по коду и вместо1000, 2000, 9999
сжимать до1, 2, 3
.The text was updated successfully, but these errors were encountered: