HTML
x
1
2
<html>
3
<head>
4
<style>
5
div {
6
color: orange;
7
border: 1px solid blue;
8
}
9
10
h1 {
11
color: initial;
12
}
13
</style>
14
</head>
15
<body>
16
17
<div>
18
<h1>Initial</h1>
19
<p>The header above and this paragraph is inside a DIV element, The DIV element has the color property set to "red". The header element has its color property set to "initial", which in this case is "black".</p>
20
</div>
21
22
<p><b>Note:</b> The "initial" keyword is not supported in Internet Explorer 11 and earlier versions, or in Opera 15 and earlier versions.</p>
23
24
</body>
25
</html>
CSS
1
1
JavaScript
1
1
Output: