media center uster code example
Example 1: css centrar imagen
img{
display:block;
margin:auto;
}
Example 2: scss media query
$information-phone: "only screen and (max-width : 320px)";
@media #{$information-phone} {
background: red;
}
img{
display:block;
margin:auto;
}
$information-phone: "only screen and (max-width : 320px)";
@media #{$information-phone} {
background: red;
}