【发布时间】:2022-01-02 20:08:04
【问题描述】:
The Folder Structure of the project
所以我正在尝试将本地 css 文件链接到 thymeleaf,但它一直没有工作。我想知道在这种情况下如何将 css 链接到 thymeleaf。谢谢。
【问题讨论】:
标签: spring spring-boot thymeleaf
The Folder Structure of the project
所以我正在尝试将本地 css 文件链接到 thymeleaf,但它一直没有工作。我想知道在这种情况下如何将 css 链接到 thymeleaf。谢谢。
【问题讨论】:
标签: spring spring-boot thymeleaf
您正在使用href="@{/css/signup.css}",但您需要像这样使用th:href:
<link rel="stylesheet" th:href="@{/css/signup.css}" />
【讨论】: