美文网首页
媒体查询

媒体查询

作者: 阿钾克斯 | 来源:发表于2016-09-20 11:54 被阅读0次

当浏览器宽度于小于500px时, 背景色为红色

@media screen and (max-width: 500px) {    
    body {        
        background-color:red;    
    }  
}

当浏览器宽度于大于500px时, 背景色为红色

@media screen and (min-width: 500px) {    
    body {        
        background-color:red;    
    }  
}

相关文章

网友评论

      本文标题:媒体查询

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