Is it possible to use css @media query like this:
@media (javascript: disabled) {
body { color: red; }
}
Or is there another way to do like this?
Is it possible to use css @media query like this:
@media (javascript: disabled) {
body { color: red; }
}
Or is there another way to do like this?
For the most valid markup possible, you should be able to include this rule as part of a <noscript>
block:
<noscript>
<style type="text/css">
body {
color: red;
}
</style>
</noscript>