Media Queries: How to target desktop, tablet, and mobile?

前端 未结 16 1840
清酒与你
清酒与你 2020-11-21 04:53

I have been doing some research on media queries and I still don\'t quite understand how to target devices of certain sizes.

I want to be able to target desktop, ta

16条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-11-21 05:24

    @media (max-width: 767px)   {
    
          .container{width:100%} *{color:green;}-Mobile
    
        }
    
    
        @media (min-width: 768px)  {
    
         .container{width:100%} *{color:pink  } -Desktop
    
        }
        @media (min-width: 768px) and (orientation:portrait)  {
    
           .container{width:100%} *{color:yellow  } -Mobile
    
        }
        @media (min-width: 1024px)  {
    
           .container{width:100%} *{color:pink  } -Desktop
    
        }
        @media (min-width: 1200px)  {
    
        .container{width:1180px} *{color:pink   } -Desktop
    
        }
    

提交回复
热议问题