1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-11 02:50:45 +00:00
notes/node_modules/doiuse/test/cases/gradient.css
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

22 lines
426 B
CSS

/*
expect:
css-gradients: 2
css-repeating-gradients: 2
*/
.radial {
background: radial-gradient(ellipse farthest-corner, black, white);
}
.simple1 {
background: linear-gradient(black, white);
}
.repeating {
background: repeating-linear-gradient(180deg,rgb(26,198,204),rgb(26,198,204) 7%, rgb(100,100,100) 10%);
}
.color {
background: red repeating-radial-gradient(ellipse farthest-corner, black, white);
}