CSS Media Query Targetting Device
/*# Mobile*/
@media only screen and (min-width: 480px) {
}
/*# Tablet*/
@media only screen and (min-width: 768px) {
}
/*# Desktop*/
@media only screen and (min-width: 992px) {
}
/*# Huge*/
@media only screen and (min-width: 1280px) {
}
Comments
Post a Comment