We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e169062 commit 58d3fb9Copy full SHA for 58d3fb9
1 file changed
README.md
@@ -219,6 +219,20 @@ Example: `{ "strip-spaces": true }`
219
Before: `a { color: red } \nb { font-weight: normal }`
220
After: `a { color: red }\nb { font-weight: normal }\n`
221
222
+### unitless-zero
223
+
224
+Available value: `{Boolean}` `true`
225
226
+Example: `{ "unitless-zero": true }`
227
228
+```css
229
+/* before */
230
+img { border: 0px }
231
232
+/* after */
233
+img { border: 0 }
234
+```
235
236
## Tests
237
238
Run `npm test` for tests.
0 commit comments