For a long time, I have been adding a query string to my CSS link whenever I made changes that needed to be reflected on client machines:
<link href="/Resources/styles/styles.css?v=1" rel="stylesheet" />
Lately, I've noticed that Chrome seems to detect the CSS file changes automatically, rendering the query string trick unnecessary for testing purposes.
Could it be that modern browsers now incorporate new logic which eliminates the need for the query string trick?
Thank you!