You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
instead of using @media (min-width: …) and @media (max-width: …), we should use @media (… <= width < …): At the moment, the breakpoints are from 0 to 575 for xs, then from 576 to 767 for sm etc. This means that all sub-pixels between 575px and 576px aren't tracked.
But we need this syntax to be more used (at least 95%):
instead of using
@media (min-width: …)
and@media (max-width: …)
, we should use@media (… <= width < …)
: At the moment, the breakpoints are from 0 to 575 for xs, then from 576 to 767 for sm etc. This means that all sub-pixels between 575px and 576px aren't tracked.But we need this syntax to be more used (at least 95%):
https://caniuse.com/css-media-range-syntax
The text was updated successfully, but these errors were encountered: