Setting the width of table cell td is invalid and the internal content always stretches it

Setting the width of table cell td is invalid and the internal content always stretches it
When making a table page, sometimes the width set for td is invalid. The width of td is always expanded by the internal content. You can set padding, but setting width directly is invalid. Let's take a closer look at this example:

Copy code
The code is as follows:

<div>
<table border="1px">
<tr>
<td width="100px" style="width: 100px !important;">1000800</td>
<td>1000000</td>
<td>1000000</td>
</tr>
<tr>
<td>1000000</td>
<td>10000300</td>
<td>1000000</td>
</tr>
</table>
</div>
<table border="1px">
<tr>
<td width="100px">1000000</td>
<td>1000000</td>
<td>1000000</td>
</tr>
<tr>
<td>1000000</td>
<td>10000300</td>
<td>1000000</td>
</tr>
</table>
* {margin: 0; padding: 0;}
.div1 {position: relative; width: 150px; height: 100px; overflow: scroll; border: 1px solid red;}


We can see that although the width of the first cell in class div1 is set, it is invalid. The cell content is always determined by the content. Since it is determined by the content, we should find a way to let the "content" expand the cell. That's it.

We can add a div in td and set the width of the div. Let's try it:

Modify part of the code in class div1:

Copy code
The code is as follows:

<td width="100px" style="width: 100px !important;">1000800</td>

Modified to

Copy code
The code is as follows:

<td><div>1000800</div></td>

Then write in the style:

Copy code
The code is as follows:

td div {
width:100px;
}

Refresh the page, and the effect is as follows:

We can see that the width of the cells in class div1 has taken effect.

<<:  How to make a tar file of wsl through Docker

>>:  Example code for building an admin dashboard layout using CSS and JavaScript

Recommend

Solve the problem that ElementUI custom CSS style does not take effect

For example, there is an input box <el-input r...

Examples of using MySQL pessimistic locking and optimistic locking

Pessimistic Lock Pessimistic lock, considers the ...

Vue makes a simple random roll call

Table of contents Layout part: <div id="a...

Two ways to build a private GitLab using Docker

The first method: docker installation 1. Pull the...

Zabbix configuration DingTalk alarm function implementation code

need Configuring DingTalk alarms in Zabbix is ​​s...

Vue implements login verification code

This article example shares the specific code of ...

vsftpd virtual user based on MySql authentication

Table of contents 1. MySQL installation 1.2 Creat...

Introduction and usage examples of ref and $refs in Vue

Preface In JavaScript, you need to use document.q...

jQuery plugin to achieve carousel effect

A jQuery plugin every day - jQuery plugin to impl...

Vue3.0 uses the vue-grid-layout plug-in to implement drag layout

Table of contents 1. Plugins 2. Interlude 3. Impl...

How to install Elasticsearch7.6 cluster in docker and set password

Table of contents Some basic configuration About ...