I'm reading about Controlling inheritance using universal values in this page.
I don't get why third link is black if browser default color for links is blue (is that correct?).
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
color: green;
}
.inherited a {
color: inherit;
}
.reset a {
color: initial;
}
.unset a {
color: unset;
}
</style>
</head>
<body>
<ul>
<li>Default <a href="#">link</a> color</li>
<li class="inherited">Inherit the <a href="#">link</a> color</li>
<li class="reset">Reset the <a href="#">link</a> color</li>
<li class="unset">Unset the <a href="#">link</a> color</li>
</ul>
</body>
</html>