我需要将.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;
}
我希望背景会有所改变,但事实并非如此。只是纯白色(默认设置)。