.element {
display: flex;
flex-direction: column;
background: linear-gradient(red, blue);
}
.element {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
background: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
background: -webkit-linear-gradient(red, blue);
background: linear-gradient(red, blue);
}
@media (max-width: 36em) {
.element {
color: red;
}
}
@media (max-width: 36em) {
.test {
color: blue;
}
}
@media (max-width: 36em) {
.element {
color: red;
}
.test {
color: blue;
}
}
Preprocessor VS Postprocessor