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

Vue.js manages the encapsulation of background table components

Table of contents Problem Analysis Why encapsulat...

Practical Optimization of MySQL Paging Limit

Preface When we use query statements, we often ne...

JavaScript Prototype Details

Table of contents 1. Overview 1.1 What is a proto...

How to solve the phantom read problem in MySQL

Table of contents Preface 1. What is phantom read...

Slot arrangement and usage analysis in Vue

The operating environment of this tutorial: Windo...

Detailed explanation of mysql partition function and example analysis

First, what is database partitioning? I wrote an ...

Implementation of grayscale release with Nginx and Lua

Install memcached yum install -y memcached #Start...

Web designers also need to learn web coding

Often, after a web design is completed, the desig...

MySQL 5.7.27 winx64 installation and configuration method graphic tutorial

This article shares the installation and configur...

Implementation of MySQL asc and desc data sorting

Data sorting asc, desc 1. Single field sorting or...

Specific operations of MYSQL scheduled clearing of backup data

1|0 Background Due to project requirements, each ...

How many pixels should a web page be designed in?

Many web designers are confused about the width of...

How to monitor multiple JVM processes in Zabbix

1. Scenario description: Our environment uses mic...

Detailed explanation of how to write mysql not equal to null and equal to null

1. Table structure 2. Table data 3. The query tea...

How to write object and param to play flash in firefox

Copy code The code is as follows: <object clas...