Possible Duplicate:
Disinherit (reset) the CSS style of a specific element?
I have a page that loads an external CSS file with different CSS attributes.
Is it possible to create an element within that same page and specifically for that element not load any of the css?
For example:
<style type="text/css">
p {
background-color:#000000;
width:550px;
}
</style>
<p>This should get the P styling from the style tag</p>
<p>This should NOT get the P styling</p>