Disable landscape-mode for mobile devices

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

Hi there i created a responsive mobile website using this:

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

+



        
相关标签:
2条回答
  • 2021-01-17 06:52

    Change your media query to a higher value?

    max-width(600px) {etc..}
    
    0 讨论(0)
  • 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

    0 讨论(0)
提交回复
热议问题