On a specific page of my website, the HTML structure is as follows:
<html>
<head><!-- Standard content with a link to a CSS file --></head>
<body>
<div id="splash">
<!-- Important content here -->
</div><!--End of Splash-->
</body>
</html>
The #splash
div only appears on this particular HTML page and I need to customize the CSS that affects the html {}
of this page. Will the notation below achieve the desired result?
html>body#splash {/* Custom CSS for the html containing div #splash */}