当一个元素上定义了多个类时,CSS 中是否有一个规则来确定级联顺序?(class="one two"
vs class="two one"
)
现在,似乎没有这样的影响。
例如: 两个 div 在 Firefox 上都是橙色的
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style>
.one { border: 6px dashed green }
.two { border: 6px dashed orange }
</style>
</head>
<body>
<div class="one two">
hello world
</div>
<div class="two one">
hello world
</div>