gpt4 book ai didi

html - 字体系列声明不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 03:00:23 25 4
gpt4 key购买 nike

在学习 CSS 类(class)时,我遇到了一个有趣的问题。

body 上定义我的 font-family 不会对显示的字体进行任何更改,但它在使用 * 或其他任何地方定义时有效,(如 p标题 等)。为什么会这样?

这里有代码:

这是index.html

<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Welcome</title>
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body> ...
</body>
</html>

这是style.css

body{
font-family: 'Lato', sans-serif;
font-size: 15px;
line-height: 1.5em;
}

我也在用 Meyer 的 reset.css

谢谢!

最佳答案

tl;dr:始终在加载站点的自定义 CSS 资源之前加载重置和外部资源。


解释

您在这里遇到的是重置 CSS 代码的特殊性问题。

当两个 CSS 规则相互冲突时,浏览器将使用两者中具有最具体选择器的那个(或者,在同等具体的情况下,它使用最后加载的规则)。

Mozilla 开发者网络将“Specificity”定义为:

The specificity is a weight that is applied to a given CSS declaration based on the count of each selector type. In the case of specificity equality, the latest declaration found in the CSS is applied to the element. Specificity only applies when the same element is targeted. CSS rules that directly target an element will always take precedence over rules that an element inherits from an ancestor.

你说你正在使用 Meyer's CSS Reset .该文件包含一行内容为 font: inherit,这与您的 font-family 规则(以及您的 font-size)直接冲突.在这种情况下,您已经成为特定性定义中最后一句话的牺牲品:重置的字体属性应用于段落、标题、列表等,并且“直接针对元素的规则将始终优先于规则元素继承自祖先”(在本例中,祖先是 body

这里有几个选项。首先,仔细检查您是否在重置后 加载了 CSS。这可能会解决它,但也可能不会。您可以使您的选择器比重置中的选择器更具体,这应该不难,因为它们旨在使用尽可能低的特异性。这就是使用 body * 作为选择器的原因。

第三个选项是不推荐的:在您希望被视为比所有其他规则具有更高优先级的任何规则上使用 !important 装饰器。这很危险,因为它很容易导致意外碰撞。


示例

Non-Working Example:这是一个不起作用的例子。这个例子不起作用,因为 Stack Snippets 在 HTML 部分之前加载了 CSS 部分——因为我在 HTML 部分中包含了重置,并且因为两个 CSS 资源有一个冲突的相同规范规则,最近加载的规则得到应用。

body {
font-family: 'Lato', sans-serif;
}
<link rel="stylesheet" href="http://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">

<p>Hello, world</p>

工作示例:重新排序 CSS 资源:在这里您可以看到,如果我在重置后显式加载我的 CSS,问题就解决了。现在正在使用我的重置规则。

<link rel="stylesheet" href="http://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">

<style type="text/css">
body {
font-family: 'Lato', sans-serif;
}
</style>

<p>Hello, world</p>

工作示例:使用更具体的选择器:如果您无法更改包含资源的顺序,则此示例有效。

body * {
font-family: 'Lato', sans-serif;
}
<link rel="stylesheet" href="http://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">

<p>Hello, world</p>

工作示例:使用 !important 装饰器:就像我之前说的,对于使用 !important 装饰器,总是要经过深思熟虑,作为they're generally considered bad practice .

body {
font-family: 'Lato', sans-serif !important;
}
<link rel="stylesheet" href="http://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">

<p>Hello, world</p>

关于html - 字体系列声明不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31438461/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com