问题是指定的 css 文件没有与 html 一起加载。当我在浏览器中打开 html 文件时,样式没有变化。所有文件都在我的电脑上。
html:
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" herf="hello.css">
</head>
<body>
<a href="settings.html">Settings</a>
</body>
</html>
hello.css(同一目录):
body {
width: 1000px;
height: 1000px;
background: red !important;
}
输出:( 或:http: //i.imgur.com/9TUccBf.png)