In my website, I have the following structure on some html page:
<html>
     <head><!-- All the usual information here, including the link to the css file --></head>
     <body>
           <div id="splash">
                 <!-- The good stuff -->
           </div><!--End of Splash-->
     </body>
</html>
Now that #splash div only appears on that one html page, and I need the css affecting that page's html {} to be a little different. Is the below notation going to do what I need? 
html>body#splash {/* CSS that only affects the html that contains div #splash */}
 
     
     
     
     
     
     
    