Về trang chủ

Breakpoints Responsive

# Mobile & tablet: width <1024px
// Mobile & Tablet
@media only screen and (max-width: 1023px){
}
# Mobie: width < 740px
// Mobie
@media only screen and (max-width: 739px) {
}
# Tablet: width >= 740px and width < 1024px
// Tablet
@media only screen and (min-width: 740px) and (max-width: 1023px) {
}
# PC Low
//PC Low, Ipad Pro
@media (min-width: 1024px) and (max-width: 1239px) {
}
# PC: width >= 1024px
// Destop
@media only screen and (min-width: 1024px) {
}