Wiki source code of LSS-P - Mechanical
Version 31.1 by Eric Nantel on 2023/07/07 14:41
Show last authors
1 | {{html}} |
2 | <!DOCTYPE html> |
3 | <html> |
4 | <head> |
5 | <style> |
6 | .table-container { |
7 | display: flex; |
8 | } |
9 | |
10 | .table-container table { |
11 | flex: 1; |
12 | } |
13 | </style> |
14 | </head> |
15 | <body> |
16 | <div class="table-container"> |
17 | <table> |
18 | <thead> |
19 | <tr> |
20 | <th>Table 1</th> |
21 | </tr> |
22 | </thead> |
23 | <tbody> |
24 | <tr> |
25 | <td>Data 1</td> |
26 | </tr> |
27 | <tr> |
28 | <td>Data 2</td> |
29 | </tr> |
30 | <!-- Add more rows as needed --> |
31 | </tbody> |
32 | </table> |
33 | |
34 | <table> |
35 | <thead> |
36 | <tr> |
37 | <th>Table 2</th> |
38 | </tr> |
39 | </thead> |
40 | <tbody> |
41 | <tr> |
42 | <td>Data A</td> |
43 | </tr> |
44 | <tr> |
45 | <td>Data B</td> |
46 | </tr> |
47 | <!-- Add more rows as needed --> |
48 | </tbody> |
49 | </table> |
50 | </div> |
51 | </body> |
52 | </html> |
53 | {{/html}} |