Is there a way to use custom CSS to alter the mobile-specific theming without running against input sanitization on the <
in media screen and (width <= 900px)
?
Oh, interesting. I was thinking about adding an escape for this (something like replacing width <
with width <
), but then I looked at the site's CSS and realized I've actually never done media queries like that.
I normally do media queries like this:
/* 900px and above (same as >= 900px) */
@media screen and (min-width: 900px)
/* 901px and above (same as > 900px) */
@media screen and (min-width: 901px)
/* 900px and below (same as <= 900px) */
@media screen and (max-width: 900px)
/* 899px and below (same as < 900px) */
@media screen and (max-width: 899px)
Reactions
Comments
Leave a comment