media query for min-height

前端 未结 6 1667
深忆病人
深忆病人 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.

提交回复
热议问题