This article mainly introduces the html of table merged cells and img pictures covering the entire TD. Friends in need can refer to it. Source code (some Classes have been deleted):
The code is as follows:
<table> <thead> <tr><th colspan=2 >买家:易小麦</th></tr> </thead> <tbody> <tr> <td rowspan=4 > <img src="../img/103.jpg" style="max-width:90%" style="max-width:90%" alt="How to merge table cells and img images to cover the entire td html" > </td> <td >物品名称:移动电源</td> </tr> <tr><td >单价:¥28 元</td></tr> <tr><td >数量:<input type="text" id="goods_number" ></td></tr> <tr><td >卖家:易大麦</td></tr> </tbody> <tfoot> <tr> <td>支付方式: <select class="w100"> <option value ="e">虚拟账户</option> <option value ="r">现金账户</option> <option value="b">网上银行</option> </select> </td> <td>总价:<span id="total_price">0</span>万元</td> </tr> </tfoot> </table>
Rendering:
Cell-row merge ( rowspan)
Cell - Column merge (colspan)
Pictures are filled
More table merged cells are filled with img pictures For articles related to the entire TD HTML method, please pay attention to the PHP Chinese website!