我是Thymleaf的新手。以下是我的文件夹结构。在这里,我无法将我的css文件包含在" .html"文件。
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Hello Spring MVC</title>
<link rel="stylesheet" media="all" href="../resources/css/bootstrap.min.css" th:href="@{../resources/css/bootstrap.min.css}" />
<link rel="stylesheet" media="all" href="../resources/css/style.css" th:href="@{../resources/css/style.css}" />
<style>
body {
background-color: lightblue;
}
</style>
</head>
&#13;
感谢。
答案 0 :(得分:0)
代码正在运行。它不包括CSS,因为“”(双引号)不兼容。(从博客复制的代码)。
感谢。