0

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?

4

1 Answer 1

4

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>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.