autoprefixer 5c

Solutions on MaxInterview for autoprefixer 5c by the best coders in the world

showing results for - "autoprefixer 5c"
Andrea
19 Sep 2020
1/*
2* Prefixed by https://autoprefixer.github.io
3* PostCSS: v7.0.29,
4* Autoprefixer: v9.7.6
5* Browsers: last 4 version
6*/
7
8.example {
9    display: -ms-grid;
10    display: grid;
11    -webkit-transition: all .5s;
12    -o-transition: all .5s;
13    transition: all .5s;
14    -webkit-user-select: none;
15       -moz-user-select: none;
16        -ms-user-select: none;
17            user-select: none;
18    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
19    background: -o-linear-gradient(top, white, black);
20    background: linear-gradient(to bottom, white, black);
21}
22