如何将.css文件链接到.ejs文件?

时间:2019-10-01 16:33:52

标签: css ejs

我需要将.css文件链接到.ejs文件。

我尝试过

/* some code */
<head>

<link rel = "stylesheet"
 type = "text/css"
 href = "mycss.css" />

</head>
<body>
</body>
/* the rest of the code */

这就是我在该css文件中拥有的

body{
    background-color: rebeccapurple; 
}

我希望背景会有所改变,但事实并非如此。只是纯白色(默认设置)。

0 个答案:

没有答案