HTML & CSS Wiki
Advertisement
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 -moz-initial keyword is a Mozilla implementation of the CSS3 initial keyword. It applies the initial value of a property to an element.

Example:

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