【发布时间】:2021-11-30 23:55:57
【问题描述】:
我通过 CSS 添加了 font-family,它应用于 body 但 h1 没有改变。下面的代码块显示了 CSS 和示例 HTML:
body{
text-align: center;
margin: 0;
font-family: 'Verdana', sans-serif;
}
.h1{
color: red;
width: 10%;
margin: 0 auto;
font-family: "Times New Roman", Times, serif;
}
<link rel="preconnect" href="https://fonts.googleapis.com">
<body>
<div class="top-container">
<img class="top-cloud" src="img/cute-cloud.png" alt="happy-cloud">
<div class="text1">
<h1>Test</h1>
<h2>I am a <span class="pro">pro</span>grammer </h2>
</div>
</body>
你能检查一下我的代码有什么问题吗?
【问题讨论】:
-
在你的css中删除
h1之前的点。 -
移除 Dot h1{ color: red;宽度:10%;边距:0 自动; font-family: "Times New Roman", Times, serif; }
标签: html css web-frontend font-family