/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
@import url("screen.css"); @import url("antiscreen.css") handheld; @import url("antiscreen.css") only screen and (max-device-width:480px); define a style sheet handheld.css with additional styling for mobile browsers, andlink them in the document as follows: <link rel="stylesheet" href="core.css" media="screen"/> <link rel="stylesheet" href="handheld.css" media="handheld, only screen and (max-device-width:480px)"/>