-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04-listTable.html
79 lines (77 loc) · 2.23 KB
/
04-listTable.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="vi" style="scroll-behavior: smooth;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bài 4-list và table</title>
<style>
.table-demo,
.table-demo td{
border: 1px, solid, black;
border-collapse: collapse;
}
</style>
</head>
<body>
<!-- list: danh sách liệt kê
ul, ol, dl
**Trong list luôn là thẻ li
li: list item(một cái phần tử của list)
-->
<!-- ordered list: danh sách có thứ tự sắp xếp
display: block
-->
<ol type="I" start="0">
<li>Cà phê sữa</li>
<li>Cà phê đá</li>
<li>Cà phê muối</li>
</ol>
<!-- ul: unordered list: danh sách không có thứ tự
**ul thì không có typle
**display: block
-->
<ul style="list-style-type: square;">
<li>Cà phê sữa</li>
<li>Cà phê đá</li>
<li>Cà phê muối</li>
</ul>
<!-- lỗi thường gặp -->
<ul style="list-style-type: square;">
<li>
Cà phê
<ul>
<li>Cà phê sữa</li>
<li>Cà phê đá</li>
<li>cà phê muối</li>
</ul>
</li>
<li>
rượu
<ul>
<li>Gin</li>
<li>Rum</li>
<li>Henessy</li>
</ul>
</li>
</ul>
<!-- table -->
<table class="table-demo">
<tr>
<td colspan="2">1</td>
<!-- <td>2</td> -->
<td rowspan="2">3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<!-- <td>6</td> -->
</tr>
<tr>
<td colspan="3">7</td>
<!-- <td>8</td>
<td>9</td> -->
</tr>
</table>
table>tr*11>td*4
</body>
</html>