CSS: Default Unit

By Xah Lee. Date: . Last updated: .

There is no default unit. Omitting unit is syntax error.

.x {
 /* syntax error */
 width: 400;
}
.x {
 /* correct */
 width: 400px;

 /* no length unit is ok if 0 */
 margin: 0;
}

But if it is 0, then no unit is necessary.