This is what I have, which works in IE7, but not in Firefox:
@media screen { @import 'screen.css'; }
It works outside of the @media block in Firefox:
@import 'screen.css';
UPDATE:
This works:
@media screen {
.yui-d3f
{
border: 1px solid #999;
height: 250px;
}
}
What am I missing?