Home > Web Front-end > HTML Tutorial > How to merge table cells and img images to cover the entire td html

How to merge table cells and img images to cover the entire td html

高洛峰
Release: 2017-03-06 16:41:40
Original
3517 people have browsed it

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>
Copy after login


Rendering:
How to merge table cells and img images to cover the entire td html

Cell-row merge ( rowspan)
Cell - Column merge (colspan)
Pictures are filled

-Set width and height to 100%

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template