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

Popular posts from this blog

Uploading Image to Sql Server Image Datatype in asp.net using fileupload Control

Get Running Sum of Query SQL Query