是否有任何默认的xhtml和css属性的用途?

时间:2010-03-25 12:35:07

标签: css xhtml

例如:

类似于XHTML中的target = "_self"和CSS中的position:static

2 个答案:

答案 0 :(得分:3)

通常,当您在更广泛的上下文中更改设置并且需要将其设置回特定情况的默认值时,您可以编写这些内容。例如target

<head>
    <base target="popup"/>
</head>
<body>
    <a href="foo">bar</a>                <!-- opens in popup -->
    <a href="bof" target="_self">zot</a> <!-- acts like a normal link -->
</body>

position

.floaty { position: fixed; }
#specialcase .floaty { position: static; }

答案 1 :(得分:1)

显然,必须有一个默认值。如果未指定其他任何内容,则为应用的值。浏览器应该知道应该应用哪个值?

这就是为什么在源代码中使用它们是无用的(它们将被应用),除非你想修改先前的反对规则。