-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq-css-6.html
62 lines (52 loc) · 884 Bytes
/
q-css-6.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<style>
table,
td,
th {
border: 1px solid black;
}
table {
border-collapse: collapse;
}
tr:nth-child(even) {
background-color: yellow
}
th {
background-color: gray;
color: white;
}
.dv {
border: 3px solid green;
text-align: center;
position: fixed;
top: 0;
right: 0;
}
</style>
</head>
<body>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>3</td>
</tr>
</table>
<div class="dv">
<p>This div element has position: fixed.</p>
</div>
</body>
</html>