我知道这可能是我遗漏的一个简单错误,但是第二双眼睛会很棒。以下 HTML 和 CSS 在 Firefox 和 IE 上连接,但不在 Chrome 上。我正在用字体大小测试它。就像 Chrome 忽略了 CSS。
HTML:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Put A Title Here Later</title>
<meta name="description" content="What is this about?">
<meta name="author" content="My Name">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<p>Test</p>
</body>
</html>
CSS:
p {
font-size: 100px;
}