このコードには、次のような段落があります
<p class="special">
This is just a test. <em>what color here</em> inheritance work
</p>
p
文字列「ここの色」が親要素から色を取得しないのはなぜだろうか。class 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>
//トニー