css媒体查询怎么写( 三 )


@media (max-width: 600px) {
body {
【css媒体查询怎么写】background: red;
}}@media (max-width: 400px) {
body {
background: blue;
}}
如果浏览器窗口宽为350像素,则背景将是蓝色的,而使用此css则是蓝色的 。
@media (max-width: 400px) {
body {
background: blue;
}}@media (max-width: 600px) {
body {
background: red;
}}
和相同的窗口宽度,背景将是红色的 。这两条规则确实是匹配的,但第二条规则是应用的规则,因为这是最后一条规则 。
最后,用
@media (max-width: 400px) {
body {
background: blue !important;
}}@media (max-width: 600px) {
body {
background: red;
}}

@media (max-width: 400px) {
html > body {
background: blue;
}}@media (max-width: 600px) {
body {
background: red;
}}
背景将是蓝色的(350像素宽的窗口) 。

css媒体查询怎么写

文章插图