This example expresses that a certain style sheet (example.css) applies to devices of a certain media type (‘screen’) with certain feature (it must be a color screen). Here the same media query written in an @import-rule in CSS: @import url(color.css) screen and (color); ——————————– @media only screen and (max-device-width: 480px) { } To target small […]

01
Jul
Comments Off
Comments Off
Comments Off
Comments Off

A simple drill down menu for web, ipad, iphone Create a .html file and paste the below html code in the body location HTML CODE <body> <div id=’box’> <div id=”menu”> <div class=”nav”>DRILL DOWN MENU</div> </div> <div id=”button” class=’test’>CLICK ME</div> <br class=”cb” /> </div> </body> In the .html file copy the total javascript code and place […]