超文本标示语言
<div>
<p>inverted color</p>
</div>
CSS
div {
background-color: #f00;
}
p {
color: /* how to use inverted color here in relation with div background ? */
}
Is there any way to invert the p
color with CSS?
有 color: transparent;
为什么不 color: invert;
即使在 CSS3?