less @media max width example
Example 1: minimum width of different devices in html
body {
background: white;
}
@media screen and (min-width: 980px) /* Desktop */ {
body {
background: red;
}
}
@media screen and (max-width: 979px) /* Tablet */ {
body {
background: blue;
}
}
@media screen and (max-width: 500px) /* Mobile */ {
body {
background: green;
}
}
Example 2: media query
@media only screen and (max-width: 800px) {
body {
background-color: ; /*your color*/
}
}