| 1 |
$list: (black); |
| 2 |
$list: join($list, white, comma); |
| 3 |
|
| 4 |
div { |
| 5 |
padding: join(10px 20px, 30px 40px); |
| 6 |
margin: join((0, 10px), (10px, 10px), space); |
| 7 |
background: linear-gradient($list); |
| 8 |
} |
| 9 |
|
| 10 |
$list: (); |
| 11 |
$list: join($list, (red, blue), comma); |
| 12 |
|
| 13 |
p { |
| 14 |
background: linear-gradient($list); |
| 15 |
} |