Am building a chrome extension. Where i defined styles for a element textarea
like this
<textarea class='text-area'></textarea>
.text-area {
padding: 15px;
border: 2px solid red;
}
But it's looking diffrent on one site to another. Consider a site www.somesite.com
where they have their own styles for textarea
like this.
textarea {
background-color: something;
font: something;
}
Browser applying both styles for this textarea
, But i don't want. This is a simple case, i have similar issue with many other elements in extension. Please suggest me a better way to have my extension unique in all the website where user opens it. Thanks