Reputation: 25
When I run the HTML page in the browser, the changes in CSS file do not show any results and loads the unedited CSS file. Even if I remove the linked CSS file, it automatically loads that CSS file and runs on the browser.
<link href="css/style-py.css" rel="stylesheet" type="text/css" media="all" />
The problem is only when I run it in eclipse IDE. If I run the same code from Sublime, it works fine.
Upvotes: 2
Views: 102
Reputation: 583
The browser sometimes stores your files in a cache in order to load the files quickly.
Try this:
CTRL + F5
to refresh invalidating the cache.
The fix is called "hard refresh". this works in most Windows and Linux browsers. In your case, it may be different. Find the right shortcut depending on your environment.
Upvotes: 1