对于下面的代码,粗体不起作用。如果我注释掉,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个段落。第一个par是正常的,第二个是粗体的。当我使用继承时,两条线的字体粗细相同。