Menubar should display only when screen resolution is 800x400 in html,css -


I have a menu bar in the html page, it should only be shown when the screen resolution is 800x400px. How to obtain this: Do not use css3 / css only by using javascript.

You should first put the menu bar Display: Any and then something like that

  @ Media All and (width: 800 px) and (height: 400 px) {#menubar {display: block; }}    

Comments

Popular posts from this blog

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -