美文网首页
媒体查询

媒体查询

作者: Cherry丶小丸子 | 来源:发表于2021-02-02 13:29 被阅读0次

    css2

    <link rel="stylesheet" type="text/css" media="screen" href="style.css">
    media = "screen and (max-width:300px)"
    
    媒体类型:all、screen、print、speech
    

    css3

    @media screen and (max-width:960px){
        // ......
    }
    @media screen and (max-device-width:960px){
        // ......
    }
    @media screen and (min-width:320px) and (max-width:960px){
        // ......
    }
    
    媒体类型:screen、only、not、all
    

    相关文章

      网友评论

          本文标题:媒体查询

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