码迷,mamicode.com
首页 > 其他好文 > 详细

媒体查询的两种方式

时间:2018-01-10 22:45:04      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:lin   max   dia   color   post   and   sheet   div   pos   

第一种:link的方式:

1 <link rel="stylesheet" media="screen and (max-width:600px)" href="./css/blue.css">
2     <link rel="stylesheet" media="screen and (min-width:900px)" href="./css/red.css">
3     <link rel="stylesheet" media="screen and (min-width:1200px)" href="./css/yellow.css">

第二种:css的方式:

    <style>
        @media screen and (max-width:600px) {
            body {
                background-color: blue;
            }
        }

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

        @media screen and (min-width:1200px) {
            body {
                background-color: yellow;
            }
        }
    </style>

 

媒体查询的两种方式

标签:lin   max   dia   color   post   and   sheet   div   pos   

原文地址:https://www.cnblogs.com/yangguoe/p/8260945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!