what would be equivalent to following external style sheet
<link href="_css/main.css" rel="stylesheet" type="text/css" media="screen, projection" />
Is it would be this
@media screen,projection
{
}
or this
@media screen,@media projection
{
}
or something else.
It’s the first one:
The
@mediatoken only appears once for a single media block.