我正在尝试将样式表与main.scala.html页面中的一个页面相关联,但我不确定我应该使用什么语法。我试图使用的样式称为" page_options_2.css"我试图将其与之关联的页面称为" signup.scala.html"
感谢您的任何建议!
答案 0 :(得分:1)
在signup.scala.html的<head>
标记中包含以下内容:
<head>
<link rel="stylesheet" type="text/css" href="your_signup_scala.css">
</head>
如果样式差异不是那么广泛,您可以将它们直接包含在<head>
标记中,如下所示:
<style>
hr {color:blue;}
p {margin-left:20px;}
... etc ...
</style>