的HTML
<div>
<p>inverted color</p>
</div>
的CSS
div {
background-color: #f00;
}
p {
color: /* how to use inverted color here in relation with div background ? */
}
有什么办法可以p
用CSS反转颜色?
color: transparent;
为什么color: invert;
甚至在CSS3中也没有?