This could be a common issue you may face if you just started some web development. Sometimes you may feel that a change you made in your CSS or Javascript, never work in your browser. Practically you may waste more time troubleshooting your CSS or Javascript issues without actually understanding why it doesn't show up when you run it in the web browser. Mostly this happens when you have externalized Javascript or CSS with something like below. <link rel="stylesheet" href="mystyles.css" /> <script src="myjavascript.js"></script> The issue with this would be caching . Web browsers tend to cache any styles or javascript files in the clientside so the browser can save up bandwidth without downloading the same set of Javascript and CSS files every time you open the website. You can see this behavior if you open the developer tools' network section in the Chrome browser. Browser caching Yet, when you try to make some changes, it would
Just another tech blog, also my personal blog. I'll be posting interesting articles about tech, programming and tricks, dev life, and any timely topics.