Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css media screen

/*display mobile when the browser window is 991px width or less*/
@media only screen and (max-width: 991px){
  	// example
    .mobile{
        display: block;
    }
}
 
PREVIOUS NEXT
Tagged: #css #media #screen
ADD COMMENT
Topic
Name
7+9 =