So the problem is that my web application only occasionally downloads the css file and uses the same downloadable css files that were downloaded, even if I edit the css file and even when I delete the file. I have no idea what is going on. I noticed that when css loads correctly, the following message is displayed:
127.0.0.1 - - [08/Jun/2015 14:46:19] "GET /static/style.css HTTP/1.1" 200
My style.cssfile is under a folder with a name static, and in my html file I have
<link type='text/css' href='{{ url_for('static', filename='style.css') }}' rel='stylesheet'>
source
share