我尝试在 JSP 文件的头部包含指向样式表的链接,并尝试在我的项目样式表中使用 @import 选项。没有任何效果。我也找不到 webjar 或任何类似的东西。
CSS:
@import url('https://fonts.googleapis.com/css?family=Boogaloo');
body {
font-family: 'Boogaloo', cursive;
}
JSPF:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="<c:url value="/resources/css/main.css" />" rel="stylesheet">
<link href="webjars/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Boogaloo" rel="stylesheet">
<title>HappyLibs Emailer</title>
</head>