media query for min-height

前端 未结 6 1668
深忆病人
深忆病人 2021-01-18 02:15

I want to write media query based on screen resolution. My screen resolution height is 768. I wrote media query for this as:

@media(min-height:768px) and (ma         


        
相关标签:
6条回答
  • 2021-01-18 02:45

    Use:

    @media screen and ( min-width: 850px ) and ( max-height: 768px )
    {
       .video-contain{
         margin-top:110px;  
        }
    }
    

    NOTE: Always use max-width media queries to great effect.

    0 讨论(0)
  • 2021-01-18 02:55
    //simple max-width query
    @media screen and ( min-height: 600px ){
        background: blue;
        ....
    }
    

    This might help you.

    0 讨论(0)
  • 2021-01-18 02:56

    @media only screen and (max-width: 375px) and (max-height:667px) { }

    0 讨论(0)
  • 2021-01-18 03:09

    Please try this:

    @media only screen and (min-width: 768px) and (max-width: 850px) {
    }
    
    0 讨论(0)
  • 2021-01-18 03:09

    You can define as like this.

    @media screen and (max-width: 1600px) and (max-height: 900px){
        //code here
    }
    
    @media screen and (max-width: 1600px) and (max-height: 1200px){
            //code here
    }
    

    Or avoid mentioning width

    @media screen and (max-height: 1200px){
                //code here
    }
    
    0 讨论(0)
  • 2021-01-18 03:10

    It seems like the issue is that your viewport is not the full resolution of your screen.

    If you set the min-height to something lower, such as 720px, it ought to work.

     @media(min-height:720px) and (max-height:850px)
    {
       .video-contain{
         margin-top:110px;
        }
    
     }
    
    0 讨论(0)
提交回复
热议问题