← Back

length-zero-no-unit warn

Zero lengths should not have units.

Examples

❌  Incorrect

.my-element {
    top: 0px;
    left: 0px;
}

✅  Correct

.my-element {
    top: 0;
    left: 0;
}