html - Mobile Browser support -


i have code want display in mobile browsers; not laptops, desktops, etc... (anything bigger 400px) can't seem code work. nothing happens when try it. doing wrong?

here's jsfiddle: http://jsfiddle.net/bydaa/24/

here's media query

@media screen , (min-width: 0px) , (max-width: 400px) {   #images { display: none; }   /* hide elsewhere */ } 

#images 

should be

.images 

i make these kinds of mistakes time!

jsfiddle here - working


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -