Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
524 views
in Technique[技术] by (71.8m points)

html - Media query canceling other media queries

an example of max-width: 960 canceling other media query blocks

I'm confused because the logo should be hidden if width is less than 748px. However all sizes below 960px width show the logo.

What am I missing here?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

(In the screenshot of the screen) I see that the max-width: 768px media query is declared before max-width: 960px which is incorrect. Media queries that only use max-width should be sorted descending. Let us assume that you declare media queries in this order:

  1. (max-width: 768px)
  2. (max-width: 960px)

If your screen is 400px wide then both media queries will match the condition. In this case the media query block declared later wins.

Solution:

Sort your max-width rules descending (larger widths first).

Or use mutually exclusive media query blocks such as this:

  • (min-width: 961px)
  • (min-width: 769px) and (max-width: 960px)
  • (max-width: 768px)

In this case order does not matter.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...