Can someone please explain CSS media queries?

前端 未结 4 420
借酒劲吻你
借酒劲吻你 2021-01-18 04:45

I read the article about them over at css3.info, but I didn\'t feel like it explained it well enough. I also could not get their examples to change with my screen size. I at

4条回答
  •  情歌与酒
    2021-01-18 05:37

    To apply a style sheet to a document when displayed on a screen greater than 800 pixels wide:

    
    

    To apply a style sheet to a document when displayed on any device less than 400 pixels wide:

    
    

    inside

    @media all and (max-width:800px) {
        body { color: red; }
    }
    

    for iphone

    
    
    

    ::combining media query

提交回复
热议问题