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

How can I add a seperate action listener to all 14 of my buttons at once that can determine player turn?(java) -

Simple file compression in C -

php - Sorting an multidimension array using usort fails -