gpt4 book ai didi

html - 关于特异性

转载 作者:太空宇宙 更新时间:2023-11-04 13:54:16 24 4
gpt4 key购买 nike

在这段代码中,我有一段看起来像这样

<p class="special">
This is just a test. <em>what color here</em> inheritance work
</p>

我想知道为什么字符串“what color here”不采用父 p 元素的颜色。我的意思是 special 类的特异性值为 10,而 em 等类型的特异性值为 1,因此此处 10 大于 1。

所以我的意思是颜色应该取自选择器 .special

这是标记和CSS

<!DOCTYPE html>
<html>
<head>
<meta name="keyword" content="html5. tutorial" charset=utf-8" />
<title></title>
<style type="text/css" media="screen">
em
{
font-weight:bold;
color:red;
}

.special
{
color:blue;
}
</style>
</head>
<body>
<p class="special">
This is just a test. Is this color <em>red</em> inheriatance work
</p>
</body>
</html>

//托尼

最佳答案

<em>.special 中的独立元素, 所以它有自己的特异性分解。如果代码是 <em class="special"> ,类特异性将适用于 <em> .

关于html - 关于特异性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18618929/

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