回答編集履歴

1

risutonobaai

2021/01/01 11:00

投稿

hentaiman
hentaiman

スコア6426

test CHANGED
@@ -1 +1,41 @@
1
1
  表の表示には[tableタグ](https://developer.mozilla.org/ja/docs/Web/HTML/Element/table)を使いましょう
2
+
3
+
4
+
5
+ ```ここに言語を入力
6
+
7
+ <table>
8
+
9
+ <thead>
10
+
11
+ <tr>
12
+
13
+ <th>ヘッダー 1</th>
14
+
15
+ <th>ヘッダー 2</th>
16
+
17
+ </tr>
18
+
19
+ </thead>
20
+
21
+ <tbody>
22
+
23
+ {% for row in rows %}
24
+
25
+ <tr>
26
+
27
+ <td>row[0]</td>
28
+
29
+ <td>row[1]</td>
30
+
31
+ <td>row[2]</td>
32
+
33
+ </tr>
34
+
35
+ {% endfor %}
36
+
37
+ </tbody>
38
+
39
+ </table>
40
+
41
+ ```