Skip to content

Commit 58d3fb9

Browse files
committed
README: unitless-zero
1 parent e169062 commit 58d3fb9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,20 @@ Example: `{ "strip-spaces": true }`
219219
Before: `a { color: red } \nb { font-weight: normal }`
220220
After: `a { color: red }\nb { font-weight: normal }\n`
221221
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+
222236
## Tests
223237
224238
Run `npm test` for tests.

0 commit comments

Comments
 (0)