CSS initial, inherit,unset keywords

Look at the following example, which is extracted from MDN https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Cascade_and_inheritance. This is my favourite example to show how initial, inherit and unset works. body {        color: green; } .my-class-1 a {       color: inherit; } .my-class-2 a {       color: initial; } .my-class-3 a {     … Continue reading CSS initial, inherit,unset keywords