front/css

타임리프 css 적용안되는 경우

Ms.Pudding 2022. 1. 10. 23:54
<link rel="stylesheet" th:href="@{/css/survey/success.css}" type="text/css">

이렇게 정상적으로 경로를 설정해도 css적용이 안되었다.

 

문제는 의외로 간단하였는데, 디렉토리 경로를 html과 css 동일하게 만들었다.

template안에는 html만 들어갈 수 있고, css디렉토리는 template밖에 만들어야한다

 

위에 static에서는 css만 들어가야하고 template은 html만 들어갈 수 있다.