blob: d78d6d2bd9a5bb45964296a6eb976d1e10180820 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<style>
#wrapper { color: blue; }
#initial { color: initial; }
#inherit { color: inherit; }
#unset { color: unset; }
</style>
</head>
<body>
<div id="wrapper">
<div id="initial">
This should be initial colored text via the `initial` keyword.
</div>
<div id="inherit">
This should be blue-colored text via the `inherit` keyword.
</div>
<div id="unset">
This should be blue-colored text via the `unset` keyword.
</div>
</div>
</body>
</html>