inherit styles from the body element - zilongxuan001/LearnFreecode GitHub Wiki
其他元素可以继承body元素的属性,样式如下
<style>
body {
background-color: black;
color:green;
font-family: Monospace;
}
</style>
<h1>Hello World</h1>
只需要在CSS的body中设置颜色和字体样式,h1的字体颜色和样式就会继承body的样式。
在浏览器中显示如下
Basic CSS: Inherit Styles from the Body Element | Learn freeCodeCamp
2018-10-7 16:33:11