Imagine that I have the following CSS class in my general.css file, which is being used in default.aspx:
Inside general.css there is a class named checkbox{ .... } and in default.aspx I have one checkbox like this:
<input type='checkbox' />
So when the page loads, the checkbox class gets applied to my checkbox. However, I want to prevent the checkbox class from being applied to this specific checkbox. The condition is that I cannot make any changes to general.css and I also can't remove the reference to general.css from default.aspx. The only solution is to modify the input tag.