I have created an extension. I added a namespace also, but my CSS is conflicting with the CSS on some websites.
Here is a sample of my CSS:
.myextention input.myclass{
border:1px solid
}
And the CSS of another website is:
input {
height:150px;
}
This is only one case. There are lots of cases on which my extension conflicts.
Is there is any right way to do this?
Thanks.