Skip to content

Commit 6451b7d

Browse files
committed
Update readme
1 parent 5f9ee98 commit 6451b7d

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,30 @@ img { border: 0px }
404404
img { border: 0 }
405405
```
406406
407+
### vendor-prefix-align
408+
409+
Available value: `{Boolean}` `true`
410+
411+
Example: `{ "vendor-prefix-align": true }`
412+
413+
```css
414+
/* before */
415+
a
416+
{
417+
-webkit-border-radius: 3px;
418+
-moz-border-radius: 3px;
419+
border-radius: 3px;
420+
}
421+
422+
/* after */
423+
a
424+
{
425+
-webkit-border-radius: 3px;
426+
-moz-border-radius: 3px;
427+
border-radius: 3px;
428+
}
429+
```
430+
407431
## Tests
408432
409433
Run `npm test` for tests.

0 commit comments

Comments
 (0)