我有一个不确定的简单问题要问您。如果p标签没有CSS代码,但是body标签具有以下代码:
OFFSET
...我知道p标签具有红色和Calibri字体,但是p标签具有背景颜色
body {
background-color: white;
color: red;
font-family: "Calibri";
}
...还是没有背景色?
谢谢!
答案 0 :(得分:0)
如果未为
<p>
标记设置background-color
,则background-color
标记将获得<p>
。
例如:
HTML:
<p>test text</p>
CSS:
body {
background-color: red;
font-family: "Calibri";
}
现在您有了background-color: red;
,并且没有为background-color
标签设置其他<p>
,因此<p>
标签得到了background-color: red;
。
但是如果您将background-color
标记设置为<p>
,则首选background-color
标记中的<p>
。
HTML:
<p style="background-color: green;">test text</p>
CSS:
body {
background-color: red;
font-family: "Calibri";
}
结果是: