-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSSRulesExample2.htm
executable file
·49 lines (43 loc) · 1.47 KB
/
CSSRulesExample2.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>CSS Rules Example</title>
<style type="text/css">
div.box {
background-color: blue;
width: 100px;
height: 200px;
}
</style>
<script type="text/javascript">
function insertRule(sheet, selectorText, cssText, position){
if (sheet.insertRule){
sheet.insertRule(selectorText + "{" + cssText + "}", position);
} else if (sheet.addRule){
sheet.addRule(selectorText, cssText, position);
}
}
function deleteRule(sheet, index){
if (sheet.deleteRule){
sheet.deleteRule(index);
} else if (sheet.removeRule){
sheet.removeRule(index);
}
}
function addNewRule(){
var sheet = document.styleSheets[0];
insertRule(sheet, "body", "background-color: silver;", 0);
//Note: Opera < 9.5 doesn't add the rule in the correct location
}
function removeFirstRule(){
var sheet = document.styleSheets[0];
deleteRule(sheet, 0);
}
</script>
</head>
<body>
<div class="box"></div>
<input type="button" value="Add CSS Rule" onclick="addNewRule()">
<input type="button" value="Remove CSS Rule" onclick="removeFirstRule()">
</body>
</html>