[css media queries breakpoints] the media query is a good way to layout for different size device #css #mediaquery
@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 992px) {
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1920px) {
}