我启动了一个 Angular 应用程序,它工作正常,但它不应用样式表样式.css在同一个带有索引.html (src( 的食物中。知道为什么吗?
索引.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AngularDemo</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="stylesheet" href="style.css">
</head>
<body>
<i></app-root>
</body>
</html>
风格.css
/* You can add global styles to this file, and also import other style files */
body {
background-color: black;
color: white;
}
背景保持白色,字母保持黑色,直到我在索引.html文件的头部添加样式。
在 angular 中,您添加的任何资产也需要在 angular.json 文件中添加其引用。你可以在angular.json中找到"styles": [ ]
。您可以在此处添加样式表引用。
要解决此问题,请将type='text/css'更改为type='stylesheet'
类型等于样式表代表CSS文件,导入任何源。 正如你所说,text/css 通常用于使用头部声明。
对我来说,如果我将其导入CSS文件,它可以工作。 例如
@import '@angular/material/prebuilt-themes/indigo-pink.css';