7

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

4

2 回答 2

8

你的 strong 元素是从你的 p 元素继承的,它是从 body 元素继承的。由于默认字体粗细是正常的,所以一切都得到应用。添加规则strong {font-weight:bold;}

于 2012-06-11T16:53:23.390 回答
5

根据font:inherit;P继承font-weight: normalBODY,并STRONG继承自P。这是正确的。

如果您不想重置fontfor STRONG,则将其从之前的选择器列表中删除{font: inherit;}

于 2012-06-11T16:52:38.740 回答