HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

all

Description

The all property for CSS is shorthand for reseting all CSS properties except direction and unicode-bidi.

Syntax

CSS

all: value;

JS

object.style.all = "value";

Values

<'all'> = initial | inherit | unset | revert
initial

Represents the computed value of the property on the element's parent.

inherit

Represents the value specified as the property's initial value.

unset

Acts as either inherit or initial, depending on whether the property is inherited or not.

revert

Depends on the origin to which the declaration belongs:

Examples

1 · inherit

2 · initial

3 · revert

4 · unset

5 · JS