| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Images in Table</title>
- <meta charset="UTF-8">
- <style>
- table {
- border-collapse: collapse;
- width: 100%;
- }
- table, th, td {
- border: 1px solid black;
- }
- img {
- max-width: 100%;
- height: auto;
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- </style>
- </head>
- <body>
- <table>
- <tr>
- <th>输入的图片</th>
- <th>输入的描述</th>
- <th>输出的商品详情</th>
- <th>输出的商品详情(翻译)</th>
- <th>输出的卖点</th>
- </tr>
|