I am creating a website, but when I made changes to the stylesheet on my site, and I refreshed the site, none of the changes were there.
I tried to use the view sour
Don't update the styles in style.css, instead create a new stylesheet of your own and import in style.css
your-own-style.css .body{ /*any updates*/ }
import your-own-style.css in style.css
@import url("your-own-style.css");