omitNumberLeadingZero
Control whether omit leading zero before dot of numbers or not.
Default value is false
.
Example for false
a {
width: 0.1px;
}
Example for true
a {
width: .1px;
}
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
omitNumberLeadingZero
Control whether omit leading zero before dot of numbers or not.
Default value is false
.
false
a {
width: 0.1px;
}
true
a {
width: .1px;
}