Hello, I am experiencing a perplexing issue and despite searching extensively on Google, I have been unable to find a solution!
I am trying to change the body background color to red only in Internet Explorer, but it is not working as expected.
Here is the HTML code I have:
<!DOCTYPE html>
<head>
<!--[if IE]>
<style type="text/css">
body {background-color:red;}
</style>
<![endif]-->
</head>
<body>TEST</body>
</html>
I am conducting tests in IE 11, as well as the latest versions of Chrome and Firefox.
Any suggestions or solutions would be greatly appreciated. Thank you!