Hi,
I have an HTML as following:
<html>
<head>
<style type="text/css">
a {color: red}
</style>
</head>
<body>
<div>
<html>
<body>
<a href="#">Test Link</a>
</body>
</html>
</div>
</body>
</html>
"Test Link" is displayed in green color. By this I understand that the HTML inside div takes parent HTML's CSS. In my scenario, I do not have control over the parent HTML. I can only control div's contents. Is there a way to have a clean, fresh CSS for the HTML inside div? I dont want the parent HTML's CSS to be applied to the HTML inside div. Any help appreciated.
Thanks