- The properties by
<style></style>
are being reassigned by the selector inlinked.css
. - There is no element with
id="div"
forimported.css
.
Babiker
2010-06-18 03:06:01
<style></style>
are being reassigned by the selector in linked.css
.id="div"
for imported.css
.First, with imported stylesheets they mean stylesheets embedded using the @import
rule.
Second, a few lines below that explanation in the CSS 2.1 spec there's an explanation of the cascading order. Other parts of the spec might be useful for your exam, too. Good luck.
Update: A bit of googling resulted in:
etc.