Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<head>
<title>CSS Test: currentColor (with 'background-color')</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/" />
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
<link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact" />
<link rel="match" href="t44-currentcolor-inherited-c-ref.xht" />
<meta name="assert" content="currentColor is a computed value" />
<style type="text/css"><![CDATA[
#one {
color: red;
background: currentColor;
}
#two {
color: green;
/* inherit currentColor, which then is green */
background: inherit;
}
#three {
color: white;
}
]]></style>
</head>
<body>
<div id="one"><div id="two"><p id="three">This paragraph should have a green background.</p></div></div>
</body>
</html>