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

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -