CSS all Property
Example
Change all the properties applied to the element or the element's parent to their initial value:
  
    div
 {
    background-color: yellow;
    color: red;
    all: initial;
}
Try it Yourself »
Definition and Usage
The all property resets all properties, apart from unicode-bidi and 
direction, to their initial or inherited value.
| Default value: | none | 
|---|---|
| Inherited: | no | 
| Animatable: | no. Read about animatable | 
| Version: | CSS3 | 
| JavaScript syntax: | object.style.all="initial" | 
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| all | 37.0 | Not supported | 27.0 | 9.1 | 24.0 | 
CSS Syntax
all: initial|inherit|unset;
Property Values
| Value | Description | 
|---|---|
| initial | Changes all the properties applied to the element or the element's parent to their initial value | 
| inherit | Changes all the properties applied to the element or the element's parent to their parent value | 
| unset | Changes all the properties applied to the element or the element's parent to their parent value if they are inheritable or to their initial value if not | 

