Css Initial
## CSS initial Keyword\\
\\
CSS `initial` KeywordUsed forSet CSS propertySets it to its default value.\\
\\
`initial` KeywordCan be used on any CSS property and any HTML element.\\
\\
### Browser Support\\
\\
The numbers in the table specify the first browser version that fully supports the property.\\
\\
| property | initial |\\
| :--- | :--- |\\
| `initial` | 41.0 |\\
| | 15.0 |\\
| | 9.0 |\\
| | 8.0 |\\
| | 28.0 |\\
\\
---\\
\\
### CSS Syntax\\
\\
```css\\
property: initial;\\
\\
### propertyValue\\
\\
| Value | Description |\\
| :--- | :--- |\\
| `initial` | SetpropertySets it to its default value. |\\
\\
---\\
\\
### Example\\
\\
#### Example 1\\
\\
Set `color` propertySet to its default value:\\
\\
```css\\
p {\\
color: initial;\\
}\\
\\
[Try it Β»](#)\\
\\
#### Example 2\\
\\
Set `border` propertySet to its default value:\\
\\
```css\\
p {\\
border: initial;\\
}\\
\\
[Try it Β»](#)\\
\\
#### Example 3\\
\\
Set `background-color` propertySet to its default value:\\
\\
```css\\
p {\\
background-color: initial;\\
}\\
\\
[Try it Β»](#)\\
\\
---\\
\\
### Related pages\\
\\
CSS TutorialοΌ(#)\\
\\
CSS TutorialοΌ(#)\\
\\
CSS Reference ManualοΌ(#)\\
\\
CSS Reference ManualοΌ(#)
YouTip