-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (49 loc) · 1.04 KB
/
index.html
File metadata and controls
50 lines (49 loc) · 1.04 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
50
<!DOCTYPE html>
<html>
<head>
<title>CSS Cheatsheet</title>
<link href="/Users/edmundyu/Documents/CodeAcademy/html-css-cheatsheet-starting/CSS-Cheatsheet/resources/styles.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>CSS Cheatsheet</h1>
<h2>Selector Tags</h2>
<table>
<tr id = "top">
<th>Selector</th>
<th>Example</th>
<th id = "ID">Description</th>
</tr>
<br>
<tr>
<th>.class</th>
<th>.intro</th>
<th id = "ID">Selects all elements with class = "intro"</th>
</tr>
<br>
<tr>
<th>#id</th>
<th>#firstname</th>
<th id = "ID">Selects all elements with id = "firstname"</th>
</tr>
<br>
<tr>
<th>*</th>
<th>*</th>
<th id = "ID">Selects all elements</th>
</tr>
<br>
<tr>
<th>element</th>
<th>p</th>
<th>Selects all <p> elements</th>
</tr>
<br>
<tr>
<th> element,element,... </th>
<th>div, p </th>
<th id = "ID">Selects all <div> elements and all <p> elements</th>
</tr>
<br>
</table>
</body>
</html>