bismay4u
9/28/2014 - 5:04 AM

[CSS Portrait only] CSS make site viewable in landscape or portrait mode only. Use any one mechanisim

[CSS Portrait only] CSS make site viewable in landscape or portrait mode only. Use any one mechanisim

<style type="text/css">
    #warning-message { display: none; }
    @media only screen and (orientation:portrait){
        #wrapper { display:none; }
        #warning-message { display:block; }
    }
    @media only screen and (orientation:landscape){
        #warning-message { display:none; }
    }
</style>


<div id="wrapper">
<!-- your html for your website -->
</div>
<div id="warning-message">
    This website is only viewable in landscape mode
</div>
<style  media="screen and (orientation: landscape)">
</style>
<style  media="screen and (orientation: portrait)">
</style>

<link rel="stylesheet" type="text/css" href="css/style_l.css" media="screen and (orientation: landscape)">
<link rel="stylesheet" type="text/css" href="css/style_p.css" media="screen and (orientation: portrait)">