If I understand Media Queries correctly, code like this:
@media (max-width:900px){...}
runs based off of the the html tag + the vertical scrollbar if it is visible. I was wondering if it was possible to have it read a different selector, somehow.
Perhaps, something along these lines:
@media (#selector{max-width:900px}){...}
EDIT: I know anything is possible with jQuery, I am not looking for a jQuery solution.
Warmth.