Thymleaf Spring MVC应用程序无法在HTML中包含.css

时间:2017-08-30 07:37:23

标签: html

我是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;
&#13;
&#13;

感谢。

1 个答案:

答案 0 :(得分:0)

代码正在运行。它不包括CSS,因为“”(双引号)不兼容。(从博客复制的代码)。

感谢。