問題は、指定された 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 )