cssreset-context.mustache revision b0e8ba0bb1024f36f17e1c8c55f531698df8bec7
0N/A<div class="intro">
2172N/A <p>CSS Rest can be used contextually by appyling CSS Reset to specific regions of the page.</p>
0N/A</div>
0N/A
0N/A <p>When CSS Reset is included in a page it applies rules to all HTML elements via type selectors like this: <code>h1 {margin:0;}</code>. An alternate version, <code>-context.css</code>, uses only descendent selectors like this: <code>.yui3-cssreset h1 {margin:0;}</code>. This means you can put that class value on a node in your document to choose which region(s) of your page CSS Reset will be applied to.</p>
0N/A```
0N/A<div class="yui3-cssreset">
0N/A <p>Everything within this container will have CSS Reset applied.</p>
0N/A</div>
0N/A```
0N/A<div class="example newwindow">
0N/A <a href="cssreset-basic-example.html" target="_blank" class="button">
0N/A View Example in New Window
0N/A </a>
0N/A</div>
0N/A
0N/A<h3>Note:</h3>
0N/A<p>Because CSS examples are susceptible to other CSS on the page, this example is only available in a new window at the above link.</p>
0N/A