I have an application where some text is coming after message getting parsed like this :
<div class='message'>
<p ng-bind-html="main.parseMsg(msg)"></p>
</div>
I have written some css for the .message p {}.
My parseMsg sometimes returns something like this
<div class='something'><p>...</p>
I want the something class to not inherit css properties from .message p{} at all.
Any solution ?