warn
length-zero-no-unitZero lengths should not have units.
Examples
❌ Incorrect
.my-element {
top: 0px;
left: 0px;
}
✅ Correct
.my-element {
top: 0;
left: 0;
}
Zero lengths should not have units.
❌ Incorrect
.my-element {
top: 0px;
left: 0px;
}
✅ Correct
.my-element {
top: 0;
left: 0;
}