I have a div with my own style. I have embedded this div in another website.
<div id="scoped-div">
<style>
label {
color: green;
}
</style>
<label> Scoped div </label>
</div>
But I am facing a problem, my div style is overridden by the style of the website. I do not want to use iframe. Except for use, is iframethere any other way to protect my div style with external style changes?
source
share