我创建了一个外部样式表,并将其命名为style.css。
的style.css
#topbar
{
background-color: red;
width: 1000px;
height: 40px;
}
body{
background-color: green;
}

现在我从根文件夹调用此style.css但它无效。我在内部文件夹和root文件中复制了style.css,但仍然没有加载。
<html>
<head>
<title>BBC News Site/title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
</body>
</html>
&#13;
答案 0 :(得分:4)
<title>BBC News Site/title>
将其修复为:
<title>BBC News Site</title>