htmlcss
Stub

This article is a stub. Please help the wiki by coding it. Spamming and vandalism is not considered an improvement and will result in discipline, up to, and including a permanent block.


The CSS initial keyword was introduced in CSS3. It applies the initial value of a property to an element. The initial value of a property is the same as the default value of the property. The Mozilla implementation of this keyword is -moz-initial.


Example:

h1 {
    color:initial; /* This is the initial color, eg. black */
    color:-moz-initial;
}