Skip to content

Commit c92f999

Browse files
petrosgitbook-bot
authored andcommitted
GitBook: [master] one page modified
1 parent ca03f3a commit c92f999

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

Diff for: tables.md

+24-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,28 @@
99

1010
### More complicated table
1111

12-
| Title 1 | Title 2 | Title 3 |
13-
| :--- | :---: | ---: |
14-
| Content 1 | Content 2 | Content 3 |
15-
| Content 1 | Content 2 | Content 3 |
12+
<table>
13+
<thead>
14+
<tr>
15+
<th style="text-align:left">Title 1</th>
16+
<th style="text-align:center">Title 2</th>
17+
<th style="text-align:right">Title 3</th>
18+
</tr>
19+
</thead>
20+
<tbody>
21+
<tr>
22+
<td style="text-align:left">
23+
<p>Content 1</p>
24+
<p>This is a 2nd line</p>
25+
</td>
26+
<td style="text-align:center">Content 2</td>
27+
<td style="text-align:right">Content 3</td>
28+
</tr>
29+
<tr>
30+
<td style="text-align:left">Content 1</td>
31+
<td style="text-align:center">Content 2</td>
32+
<td style="text-align:right">Content 3</td>
33+
</tr>
34+
</tbody>
35+
</table>
1636

0 commit comments

Comments
 (0)