简体   繁体   中英

Media Query not reading from Widths 479px to 767px?

I have three media queries that range like this:

@media screen and (min-width: 360px) and (max-width: 479px)
@media screen and (min-width: 480px) and (max-width 767px)
@media screen and (min-width: 768px) and (max-width: 1023px)

The issue is that my website doesn't read the styles in the width range of 479px to 767px which is something I do not understand, any assistance with this of suggestions are very much liked, thanks!

You have a typo you forgot the colon at the (max-width 767px) it should read like the following:

@media screen and (min-width: 360px) and (max-width: 479px)
@media screen and (min-width: 480px) and (max-width: 767px)
@media screen and (min-width: 768px) and (max-width: 1023px)

Here is a snippet

 @media screen and (min-width: 360px) and (max-width: 479px){ body{background:green;} } @media screen and (min-width: 480px) and (max-width: 767px){ body{background:yellow;} } @media screen and (min-width: 768px) and (max-width: 1023px){ body{background:red;} } 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM