-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (132 loc) · 3.83 KB
/
index.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<html>
<head>
<meta charset="UTF-8">
<title>CSS Tables</title>
</head>
<body>
<style>
.formula {
margin: 10px;
width: 500px;
display: table;
border-collapse: collapse;
text-align: center;
}
.formula p {
display: table-caption;
caption-side: bottom;
margin: 0;
padding: 10px;
font-size: 20px;
}
.formula ul {
list-style: none;
}
header {
display: table-header-group;
background-color: #ffffff;
}
.content {
display: table-row-group;
}
.content ul,
header ul {
display: table-row;
}
.content ul li,
header ul li {
display: table-cell;
padding: 5px;
border: 1px solid #777777;
vertical-align: middle;
}
.column-group {
display: table-column-group;
background-color: #b2fdd0;
}
.column {
display: table-column;
}
header ul li {
border-bottom: none;
}
.column.column-last {
background-color: #ffbaba;
}
.content-important {
background-color: #fffebc;
}
</style>
<!DOCTYPE html>
<html>
<head>
<title>Испытание: строим таблицу на CSS</title>
<meta charset="utf-8">
<base href="/assets/course86/">
<link href="course.css" rel="stylesheet">
</head>
<body>
<article class="formula">
<p>Поваренная книга</p>
<div class="column-group">
<div class="column"></div>
<div class="column"></div>
<div class="column"></div>
</div>
<div class="column column-last"></div>
<div class="content">
<ul>
<li><img src="img/blue-crystal.png" alt="" width="20" height="15"></li>
<li><img src="img/bones.png" alt="" width="20" height="15"></li>
<li><img src="img/magic.png" alt="" width="20" height="15"></li>
<li><img src="img/stick.png" alt="" width="20" height="15"></li>
</ul>
<ul>
<li><img src="img/green-crystal.png" alt="" width="20" height="15"></li>
<li><img src="img/stick.png" alt="" width="20" height="15"></li>
<li>–</li>
<li><img src="img/skull.png" alt="" width="20" height="15"></li>
</ul>
</div>
<header>
<ul>
<li>Объект 1</li>
<li>Объект 2</li>
<li>Объект 3</li>
<li>Результат</li>
</ul>
</header>
<div class="content content-important">
<ul>
<li><img src="img/led.png" alt="" width="20" height="15"></li>
<li><img src="img/fireball.png" alt="" width="20" height="15"></li>
<li><img src="img/sand-glass.png" alt="" width="20" height="15"></li>
<li><img src="img/gold.png" alt="" width="20" height="15"></li>
</ul>
</div>
</article>
</body>
</html>
<H1>Использованные теги:</H1>
<ul>
<li>div</li>
<li>ul</li>
<li>li</li>
</ul>
<p>которые превращаются в таблицу. Главному контейнеру даем тип table</p>
<p>затем определяем колонки и группы (если нужно), и строки и группы (если нужно).</p>
<p>у заголовка таблицы также есть дополнительное свойство caption-side:</p>
<code> display: table-caption;<br>
caption-side: bottom;
</code>
<br>
<br>
<div style="display: table; border: 1px solid;">
<div style="display: table-caption">Table caption</div>
<div style="display: table-column;"></div>
<div style="display: table-cell; border: 1px solid;">1</div>
<div style="display: table-cell; border: 1px solid;">2</div>
<div style="display: table-cell; border: 1px solid;">3</div>
</div>
</body>
</html>