我无法将本地 css 添加到 thymeleaf - 但添加 bootstrap 和 jquery 有效
I cannot add local css to thymeleaf - but adding bootstrap and jquery works
Error Message From Dev Tools
The Folder Structure of the project
How I linked this
所以我正在尝试 Link 本地 css 文件到 thymeleaf 但它一直没有工作。我想知道在这种情况下如何 link css 到 thymeleaf。谢谢。
您正在使用 href="@{/css/signup.css}"
,但您需要像这样使用 th:href
:
<link rel="stylesheet" th:href="@{/css/signup.css}" />
Error Message From Dev Tools
The Folder Structure of the project
How I linked this
所以我正在尝试 Link 本地 css 文件到 thymeleaf 但它一直没有工作。我想知道在这种情况下如何 link css 到 thymeleaf。谢谢。
您正在使用 href="@{/css/signup.css}"
,但您需要像这样使用 th:href
:
<link rel="stylesheet" th:href="@{/css/signup.css}" />