css 响应式网页设计 - 媒体查询

Posted

tags:

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

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {...} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {...} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {...} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {...} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}

/* Orientation: Portrait / Landscape */

@media only screen and (orientation: landscape) {
    body {
        background-color: lightblue;
    }
}

以上是关于css 响应式网页设计 - 媒体查询的主要内容,如果未能解决你的问题,请参考以下文章

CSS 媒体查询(用于响应式Web设计)

使用 CSS 媒体查询创建响应式网站

响应式网页设计

我应该使用媒体查询进行响应式设计吗?

带有 display:none 和媒体查询的响应式 CSS

如何使用更新的HTML和CSS函数创建响应式设计