Is it possible to access the screen's width and height in CSS Media queries, to write a dynamic url, like this:
@media all
{
background: url("http://site.com/background/" + width + "/" + height");
}
Here width and height are variables, which would be dynamically set to whatever the user's width and height is.
Is that possible, or do I have to use javascript to accomplish this?