<!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>
|