My JSON looks like this
{
    "product_details": {
        "description": "<style> img {width: 320px; height: auto;}</style>Apple iPhone 6 Gold , 128 GB New"
    }
}
and I have a component template that is something like this:
<div class="panel-body" [innerHTML]="product_detail.description"></div>
if I tried to render this in the browser it is displaying like this.
img {width: 320px; height: auto;} Apple iPhone 6 Gold , 128 GB New
above the content of a style tag should not be displayed.
Please Help me a way to get that working.

