I use visual studio 2012. I'm working with asp net. I have a style sheet inside a folder and referenced it in an aspx page. When I create a new html tag, a <h3>
for example, and make simple modifications in the style sheet as the color of the element, sometimes it happens that this modification is not applied, that is, <h3>
is with the default color. However, if I put <style></style>
and the modifications in aspx itself they are applied. It does not matter if it is by class or id, this is sometimes happening. To solve this, I can also copy the contents of the style sheet that is no longer working and paste it into a new style sheet. Strange, is not it? This is happening frequently, why will it?
Note: I updated the page and opened another one, but the problem persisted, only resolved as I said above.