-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectors.html
More file actions
49 lines (39 loc) · 1.13 KB
/
Selectors.html
File metadata and controls
49 lines (39 loc) · 1.13 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Css selectors</title>
<style>
/* element selectors:*/
p{
/* all p tags will have text colour red even ones inside div tag */
color: red;
}
/* id selectors */
#redElement{
/* only p tag with id redElement will have text colour red */
color: rgb(255, 72, 0);
}
/* class selectors */
.bgBlue{
background-color: blue;
color: violet;
}
/* group selectors */
footer, span{
background-color: pink;
}
</style>
</head>
<body>
<h3>Css selectors</h3>
<p>simple paragraph to demonstrate css selector this is </p>
<p id="redElement" class="redElement bgBlue">simple paragraph to demonstrate css selector this is second</p>
<div>
<p>simple paragraph to demonstrate css selector this is third </p>
<footer>This is footer</footer>
<span>This is span</span>
</div>
</body>
</html>