I have a template, and I want to show that HTML template inside a div.
That HTML CSS template automatically inherits the CSS used in the application.
I want it not to inherit the CSS. I need to reset the styles for that one div completely...
Sample code:
<html>
<head><title>hi</title>
<link href="mystyle.css" />
</head>
<body>
This is my website content
<div id="template_holder">
<table>
<tr>
<td>name</td>
<td>Raja</td>
</tr>
</table>
</div>
</body>
</html>
In the above code the template_holder holds a table which inherits the styles from mystyles.css.
I don't want it to inherit it...