|
@@ -12,6 +12,7 @@
|
|
|
#g { background-color: rgba(0%, 100%, 0%, 1); }
|
|
|
#h { background-color: hsl(120, 100%, 50%); }
|
|
|
#i { background-color: hsla(120, 100%, 50%, 1); }
|
|
|
+ #j { color: lime; background-color: currentColor; }
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
@@ -25,5 +26,6 @@
|
|
|
<div id="g">This is green, using rgba(0%, 100%, 0%, 1).</div>
|
|
|
<div id="h">This is green, using hsl(120, 100%, 50%).</div>
|
|
|
<div id="i">This is green, using hsla(120, 100%, 50%, 1).</div>
|
|
|
+ <div id="j"><span style="color: black;">This is green, using currentcolor.</span></div>
|
|
|
</body>
|
|
|
</html>
|