HTML
<div>
<p>inverted color</p>
</div>
Run Code Online (Sandbox Code Playgroud)
CSS
div {
background-color: #f00;
}
p {
color: /* how to use inverted color here in relation with div background ? */
}
Run Code Online (Sandbox Code Playgroud)
有没有办法p用css 反转颜色?
color: transparent;为什么color: invert;即使在CSS3中也没有?