媒体查询的两种方式

Posted Carina

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了媒体查询的两种方式相关的知识,希望对你有一定的参考价值。

第一种: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>

 

以上是关于媒体查询的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

响应式布局的两种实现形式

CSS媒体查询总结

mybatis一对多联表查询的两种常见方式

MySql查询生日的两种方式

linq查询结果指定列的两种方式

MySQL查询排序数据的两种方式