Style the HTML Body Element(Body元素)
说明:
现在让我们来一个全新的开始,讲一讲 CSS 继承。
每一个 HTML 页面都有一个 body 元素。
通过将其 background-color 设置为黑色,我们可以证明 body 元素的存在。
我们可以通过将下面的代码添加到我们的 style 元素来做到这一点:
body {
background-color: black;
}
原始代码:
<style>
</style>
调试代码:
<style>
body {
background-color: black;
}
</style>
PreviousUse Clockwise Notation to Specify the Margin of an ElementNextInherit Styles from the Body Element
Last updated
Was this helpful?