-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0.02_cssIDs.html
34 lines (29 loc) · 905 Bytes
/
0.02_cssIDs.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
<!DOCTYPE html>
<html>
<head>
<title>CSS IDs</title>
<link rel="stylesheet" href="0.02_cssIDs.css">
</head>
<body>
<h1>IDs</h1>
<p>An ID is a unique identifier</p>
<div>
<h3>ID Notes</h3>
<ul class="customClass">
<liAn ID is unique to the element that it's on.</li>
<li>To target it from our CSS, we need to use a # sign.</li>
<li>You can use them with classes on the same element</li>
</ul>
</div>
<div>
<h1>IDs versus Classes</h1>
<h2>IDs</h2>
<p id="number-one">This ID will be linked in the CSS page by a #</p>
<p id="number-one number-two">You can't have two IDs on an element.</p>
<h2>Classes</h2>
<p class="first-class">One class here</p>
<p class="first-class second-class">Two classes here</p>
<p id="number-one">You can use an ID twice, but it's best not to. It should be used mostly for targeting specific items.</p>
</div>
</body>
</html>