“Jak połączyć CSS z kolbą HTML” Kod odpowiedzi

Jak dodać CSS w aplikacji Flask

<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/mainpage.css') }}">
Smoggy Sloth

arkusz stylów łącza kolby

<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
Pixels_128

Łączenie niestandardowych CSS w kolbie

{% block styles %}
{{super()}}
<link rel="stylesheet"
      href="{{url_for('.static', filename='mystyle.css')}}">
{% endblock %}
Annoyed Alpaca

Jak połączyć CSS z kolbą HTML

#link it in html

<link rel= "stylesheet" type= "text/css" href= "{{url_for('static', filename='styles/styles.css') }}">

#place a config for your app so that browser doesn't store cashe, if this doesn't update your css clear browser cash for last {x} hours
if __name__ == '__main__':
    app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 1
    app.run()

#make sure that your directory looks something like this...
|root|
MainFileWithFlaskProgram.py

	|static|
		|styles|
			styles.css

	|templates|
		YourHTMLFile.html
FXbiker

Odpowiedzi podobne do “Jak połączyć CSS z kolbą HTML”

Pytania podobne do “Jak połączyć CSS z kolbą HTML”

Więcej pokrewnych odpowiedzi na “Jak połączyć CSS z kolbą HTML” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu