10
.css 파일 (flask / python)을 선택하지 않는 애플리케이션
외부 스타일 시트로 스타일을 지정하려는 템플릿을 렌더링하고 있습니다. 파일 구조는 다음과 같습니다. /app - app_runner.py /services - app.py /templates - mainpage.html /styles - mainpage.css mainpage.html은 다음과 같습니다. <html> <head> <link rel= "stylesheet" type= "text/css" href= "../styles/mainpage.css"> </head> <body> <!-- content --> 내 스타일은 적용되지 않습니다. HTML이 내가 렌더링하는 템플릿이라는 사실과 …