media query in scss code example
Example 1: css media query
/* BOOSTRAP MEDIA BREAKPOINTS */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
.selector {
background-color:#f00;
}
}
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}
Example 2: media query in scss
$media-desktop: "only screen and (max-width : 1024px)";
$media-tablet: "only screen and (max-width : 768px)";
$media-mobile: "only screen and (max-width : 600px)";
$media-mobile-sm: "only screen and (max-width : 480px)";
@media #{$media-desktop} {
background: red;
}
@media #{$media-tablet} {
background: red;
}
@media #{$media-mobile} {
background: red;
}
@media #{$media-mobile-sm} {
background: red;
}
Example 3: scss media query
$information-phone: "only screen and (max-width : 320px)";
@media #{$information-phone} {
background: red;
}
Example 4: media queries scss
$media-desktop: "only screen and (max-width : 1024px)";
$media-tablet: "only screen and (max-width : 768px)";
$media-mobile: "only screen and (max-width : 600px)";
$media-mobile-sm: "only screen and (max-width : 480px)";
@media #{$media-desktop} {
background: red;
}
@media #{$media-tablet} {
background: red;
}
@media #{$media-mobile} {
background: red;
}
@media #{$media-mobile-sm} {
background: red;
}
Example 5: media screen scss mixin
// respond is the name of your mixin
@mixin respond ($breakpoint) {
// $breakpoint is simply a variable that can have several values
@if $breakpoint==tablet {
// here `laptop` is the value of $breakpoint
// when call laptop, we mean the following piece of code
@media only screen and (max-width: 600px) {
@content;
}
}
@if $breakpoint==mobile {
@media only screen and (max-width: 480px) {
@content;
}
}
}