Disable landscape-mode for mobile devices

后端 未结 2 959
温柔的废话
温柔的废话 2021-01-17 06:33

Hi there i created a responsive mobile website using this:

max-width(480px) {etc..} 

+



        
2条回答
  •  情话喂你
    2021-01-17 06:59

    You can try and target specific orientation with your media query:

    @media max-width(600px) and (orientation: landscape) {
        rules for landscaped devices...
    }
    

    More on media queries:

    https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries

提交回复
热议问题