I need help figuring out how to prevent the css from my master page from overriding my webform page.
Right now, I am trying to override the css by including another css file in the header of the page:
<link href="customStyle.css" rel="stylesheet" />
However, this method does not completely stop the loading of my master.css. It only overrides it. I believe there must be a way to prevent the inheritance of the master page's css.
Thank you for your help in advance.