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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>table</title>
</head>
<style>
    .tabletest {
        border: 1px solid #000000;
        width: 200px;
        min-height: 25px;
        line-height: 25px;
        text-align: center;
        border-collapse: collapse;
        padding: 2px;
    }
 
    .trtd {
        border: 1px solid #000000;
    }
 
    .images {
        width: 100%;
        height: 100%;
    }
 
</style>
<body>
<table style="
        border: 1px solid #000000;
        width: 100%;
        min-height: 25px;
        line-height: 25px;
        text-align: center;
        border-collapse: collapse;
        padding: 2px;">
    <tr class="trtd" style="border: 1px solid #000000; width: 50%">
        <td class="trtd" style="border: 1px solid #000000;"><img class="images" src="http://localhost:8080/images/tutu.png"/></td>
        <td style="border: 1px solid #000000;"><img  class="images" src="http://localhost:8080/images/tutu2.png"/></td>
    </tr>
 
    <tr style="border: 1px solid #000000; width: 50%">
        <td class="trtd" style="border: 1px solid #000000;">测试</td>
        <td style="border: 1px solid #000000;">测试</td>
    </tr>
</table>
<a href="/table/test"><input type="button" value="生成world"> </a>
wom
</body>
<script>
</script>
</html>