Skip to content

Commit 716719f

Browse files
committed
Added example for vendor-prefix-align option
1 parent 05dbb82 commit 716719f

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -414,17 +414,23 @@ Example: `{ "vendor-prefix-align": true }`
414414
/* before */
415415
a
416416
{
417-
-webkit-border-radius: 3px;
418-
-moz-border-radius: 3px;
419-
border-radius: 3px;
417+
-webkit-border-radius: 3px;
418+
-moz-border-radius: 3px;
419+
border-radius: 3px;
420+
background: -webkit-linear-gradient(top, #fff 0, #eee 100%);
421+
background: -moz-linear-gradient(top, #fff 0, #eee 100%);
422+
background: linear-gradient(to bottom, #fff 0, #eee 100%);
420423
}
421424
422425
/* after */
423426
a
424427
{
425-
-webkit-border-radius: 3px;
426-
-moz-border-radius: 3px;
427-
border-radius: 3px;
428+
-webkit-border-radius: 3px;
429+
-moz-border-radius: 3px;
430+
border-radius: 3px;
431+
background: -webkit-linear-gradient(top, #fff 0, #eee 100%);
432+
background: -moz-linear-gradient(top, #fff 0, #eee 100%);
433+
background: linear-gradient(to bottom, #fff 0, #eee 100%);
428434
}
429435
```
430436

0 commit comments

Comments
 (0)