【问题标题】:Responsivness for different screens [duplicate]不同屏幕的响应能力[重复]
【发布时间】:2019-12-15 23:56:24
【问题描述】:

对于移动设备、平板电脑和 ipad 屏幕,正确的媒体查询大小应该是多少才能使所有屏幕都响应。

.box1, .box2, .box3{
     background: #ffffff;
     color:#2d276b;
     width: 60%;
     margin-left: 1%;
     font-size: 13px;
     text-align:left;
     margin-top:-10px;
} 

【问题讨论】:

    标签: html css


    【解决方案1】:

    您应该使用媒体查询。

    下面的例子

        /* 
      ##Device = Desktops
      ##Screen = 1281px to higher resolution desktops
    */
    
    @media (min-width: 1281px) {
    
      //CSS
    
    }
    
    /* 
      ##Device = Laptops, Desktops
      ##Screen = B/w 1025px to 1280px
    */
    
    @media (min-width: 1025px) and (max-width: 1280px) {
    
      //CSS
    
    }
    
    /* 
      ##Device = Tablets, Ipads (portrait)
      ##Screen = B/w 768px to 1024px
    */
    
    @media (min-width: 768px) and (max-width: 1024px) {
    
      //CSS
    
    }
    
    /* 
      ##Device = Tablets, Ipads (landscape)
      ##Screen = B/w 768px to 1024px
    */
    
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
      //CSS
    
    }
    
    /* 
      ##Device = Low Resolution Tablets, Mobiles (Landscape)
      ##Screen = B/w 481px to 767px
    */
    
    @media (min-width: 481px) and (max-width: 767px) {
    
      //CSS
    
    }
    
    /* 
      ##Device = Most of the Smartphones Mobiles (Portrait)
      ##Screen = B/w 320px to 479px
    */
    
    @media (min-width: 320px) and (max-width: 480px) {
    
      //CSS
    
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-01-07
      • 2019-11-21
      • 2022-11-21
      • 2021-04-20
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多