美文网首页
响应式布局

响应式布局

作者: Estrus丶 | 来源:发表于2017-09-16 21:41 被阅读0次

    移动端响应式布局 :

    1.media query:
    根据屏幕的宽度和设备的宽度设置不同的样式
    设置方式 @media screen and ( min-width: ) and( max-width: ){
    样式
    }
    2.设置宽度 :device-width device-height
    @media screen and ( min-width:320px) and ( max-width: 350px ){
    html{
    font-size:10px;
    }
    .content{
    background: red;
    }
    }
    @media screen and ( min-width:351px ) and ( max-width: 414px ){
    html{
    font-size:14px;
    }
    .content{
    background: green;
    }
    }
    3.IOS端兼容:
    @media (device-height:480px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone4/4s */
    .class{}
    }

    @media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5 */
    .class{}
    }

    @media (device-height:667px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 */
    .class{}
    }

    @media (device-height:736px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 Plus */
    .class{}
    }

    4.设置像素比 : -webkit-min-device-pixel-ratio:2
    苹果是2 安卓是1.5或者1

    相关文章

      网友评论

          本文标题:响应式布局

          本文链接:https://www.haomeiwen.com/subject/agpusxtx.html