对于下面的代码,粗体不起作用。如果我注释掉font:inherit;
,那么它会按预期工作。
我不明白为什么会这样。我认为<p>
会从<body>
继承而且粗体会起作用。我在Firefox,IE,Safari和Opera中看到了完全相同的东西。
我错过了什么?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700,bold' rel='stylesheet' type='text/css' />
<style type="text/css">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
font:inherit;
}
body{
font-family:'Droid Sans', sans-serif,Arial,Helvetica,'Trebuchet MS';
font-size:14px;
}
</style>
</head>
<body>
<p>this is a normal paragraph</p>
<p><strong>this is bolded</strong></p>
</body>
</html>
编辑:'不工作'我的意思是粗体字体没有出现。 html有2个段落。第一个标准是正常,第二个是粗体。当我使用继承时,两行都具有相同的字体权重。
答案 0 :(得分:5)
根据font:inherit;
,P
继承font-weight: normal
的{{1}},BODY
继承自STRONG
。这是对的。
如果您不想为P
重置font
,请在STRONG
之前将其从选择列表中删除。
答案 1 :(得分:5)
你的强元素继承自你的p元素,它继承自body元素。由于默认的font-weight是正常的,所以应用了所有内容。添加规则strong {font-weight:bold;}