它位于名为“Website”的文件夹中我的css文件有
body {
background-color: #d0e4fe;
}
h1 {
color: orange;
text-align: center;
}
p {
font-family: "Times New Roman";
font-size: 22px;
}
为什么不工作?
答案 0 :(得分:1)
我认为你的报价错误。而不是“引号,请尝试”
将名为 style.css 的样式表置于与网页相同的级别,以下行适用于我:
<link rel="stylesheet" type="text/css" href="style.css">
答案 1 :(得分:0)
尝试
<link rel=“stylesheet” type=“text/css” href=“Website/style.css”>