gpt4 book ai didi

java - 不通过thymeleaf显示css内容

转载 作者:行者123 更新时间:2023-11-30 02:02:35 25 4
gpt4 key购买 nike

我有 css 文件:main.css

h1 { 
color: red;
}

index.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Drink Shop</title>
<link rel="stylesheet" type="text/css" th:href="@{/css/main.css}"/>
</head>
<body>
<h1>Wellcome</h1>
</body>
</html>

一切看起来都不错,但是 h1 文本的红色:wellcome 没有显示出来我用 thymeleaf , Spring Boot 。也许我应该在 pom.xml 中添加一些依赖项?

层次结构

enter image description here

最佳答案

试试这个,

<link rel="stylesheet" href="../css/main.css" th:href="@{/css/main.css}" type="text/css"/>

关于java - 不通过thymeleaf显示css内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52347205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com