-
Notifications
You must be signed in to change notification settings - Fork 0
/
tut14-Selectors.html
40 lines (40 loc) · 1.02 KB
/
tut14-Selectors.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Selectors</title>
<style>
/* CSS by element */
span{
color: red;
background-color:springgreen;
}
/* css by id */
#red{
color:yellowgreen;
background-color:black;
}
/* css by class */
.blue{
color: orange;
background-color:brown;
}
/* css by grouping */
footer,section{
color: purple;
background-color:yellowgreen;
}
</style>
</head>
<body>
<h3>CSS Selectors</h3>
<span>This is a span</span>
<p id="red">This is a normal paragraph</p>
<p class="blue">This is another normal paragraph</p>
<footer>This is a footer</footer>
<section>This is a section</section>
<span>Another span here</span>
</body>
</html>