看规范说是 css 只能在 <head /> 内声明,但是我在 <body /> 内使用了
<body>
<div id="content">
<style>
body { margin: 10%; }
</style>
或者
<link rel="stylesheet" href="style.css">
</div>
</body>
也是一样可以执行,这是为什么?
在 head 和 body 中声明 css 有什么区别?