CSS global values
Global values can be used for any CSS property and on any HTML element:
initialresets all properties to their default value. For example,color: initial;will set the text color to black as it's the default.inheritspecifies that a property should inherit its value from its parent element. An element withcolor: inherit;declaration will have the same text color as its parent.unsetworks the same asinheritfor inherited properties types and asinitialfor non-inherited properties.[1]
