The table merges cells and the img image to fill the entire td HTML

The table merges cells and the img image to fill the entire td HTML
Source code (some classes deleted):

Copy code
The code is as follows:

<table>
<thead>
<tr><th colspan=2 >Buyer: Yimai</th></tr>
</thead>
<tbody>
<tr>
<td rowspan=4 >
<img src="../img/103.jpg" width="100%" height="100%">
</td>
<td >Item name: mobile power</td>
</tr>
<tr><td >Unit price: ¥28 yuan</td></tr>
<tr><td >Quantity: <input type="text" id="goods_number" ></td></tr>
<tr><td >Seller: Yi Damai</td></tr>
</tbody>
<tfoot>
<tr>
<td>Payment method:
<select class="w100">
<option value ="e">Virtual account</option>
<option value ="r">Cash Account</option>
<option value="b">Online Banking</option>
</select>
</td>
<td>Total price: <span id="total_price">0</span> Ten thousand yuan</td>
</tr>
</tfoot>
</table>

Effect picture:


Cells - Row Merge (rowspan)
Cell - Column Merge (colspan)
The image fills the <td> - set width and height to 100%

<<:  What to do if the online MySQL auto-increment ID is exhausted

>>:  RGB color table collection

Recommend

How to find the my.ini configuration file in MySQL 5.6 under Windows

Make a note so you can come back and check it lat...

An enhanced screenshot and sharing tool for Linux: ScreenCloud

ScreenCloud is a great little app you didn’t even...

Example of nginx ip blacklist dynamic ban

When a website is maliciously requested, blacklis...

Detailed explanation of MySQL precompilation function

This article shares the MySQL precompilation func...

How to create a database in navicat 8 for mysql

When developing a website, you often need to use ...

Tutorial on how to modify element.style inline styles

Preface When we were writing the web page style a...

Recommend 60 paging cases and good practices

<br />Structure and hierarchy reduce complex...

Detailed explanation of Vuex overall case

Table of contents 1. Introduction 2. Advantages 3...

Table related arrangement and Javascript operation table, tr, td

Table property settings that work well: Copy code ...

Using js to achieve waterfall effect

This article example shares the specific code of ...

Summary of commonly used performance test scripts for VPS servers

Here is a common one-click performance test scrip...

Detailed tutorial on running Tomcat in debug mode in IDEA Maven project

1. Add the following dependencies in pom.xml <...

Docker time zone issue and data migration issue

Latest solution: -v /usr/share/zoneinfo/Asia/Shan...