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 中也不行?