我有一个<div>
元素,其中包含<p>
元素:
<div style="font-size:10pt; color:red;">
This is my Parent Div.
<p>This is my Child Paragraph.</p>
My parent Div Ends Here.
</div>
如何阻止我的段落继承设置为<div>
?
答案 0 :(得分:1)
在您的情况下,最好的方法是恰好超越<p>
元素继承的样式:
因此,在CSS文件中,您应该使用它而不是内联样式:
.parent-div {
font-size: 10pt;
color: red;
}
.child-paragraph {
font-size: 12pt;
color: black;
}
答案 1 :(得分:0)
在您的子节点 -
<p style="font-size:12pt; color:black;">This is my child</p>
只需将内联样式设置为您想要的任何内容。
答案 2 :(得分:0)