Autoprefixer 9.1 brings background-clip: text
and fix span
in IE Grid.
Background Clip
background-clip: text
become to be the standard and got Edge support. So we added it to Autoprefixer:
.title {
background: linear-gradient(yellow, red);
-webkit-background-clip: text;
background-clip: text;
}
Note, that Edge expect -webkit-
prefix for this property.
Grid Layout Fix
@bogdan0083 fixed an issue when media-query override some grid-template
.