본문 바로가기
python web framework

flask css 파일 연동 하기 / 플라스크 css 파일 적용하기

by 타닥타닥 토다토닥 부부 2023. 3. 21.
반응형

flask css 파일 연동 / css 파일 적용하기

 

1. 파일 구조

  - static 디렉션 생성 후 css 폴더 안에 test.css를 위치 시키는게 가장 일반적입니다.

├── app.py
├── static 
│   └── css
│       └── test.css
└── templates
    └── main.html

 

2. main.html 파일에서 <head></head> 테그 안에 아래와 같이 작성합니다.

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

 

 

 

반응형

댓글