After setting the table width in the page to width="600px", the width is still not fixed. The text does not wrap when it is too long, which deforms the table. Solution: 1. Table sets width, both absolute and relative width are acceptable table-layout:fixed; With this property set, all remaining td's will have the same width. After this operation, the width of the table is fixed, but if the article inside is very long, the text will cover the Solution: Add style="word-wrap:break-word;" to the td to wrap the text. If you don't want to wrap the text, you can hide the content that exceeds the limit and replace it with an ellipsis: Add above td Copy code The code is as follows:overflow:hidden; white-space:nowrap; text-overflow:ellipsis; (currently only tested in IE8) Recommended method (2013-11-14 by Zhang Lei) Use div to control the content of td Add in TD (1) Text will be automatically hidden if it exceeds the width and height Copy code The code is as follows:<div style="width:100px;height:25px;overflow-x:hidden;overflow-y:hidden;">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</div> (2) Set the TD width to automatically wrap when it exceeds the length Copy code The code is as follows:<td><div style="width:100px;word-wrap:break-word;" >aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</div> </td> |
<<: Explore how an LED can get you started with the Linux kernel
>>: Introduction to document.activeELement focus element in JavaScript
1. Multiple borders[1] Background: box-shadow, ou...
Introduction yum (Yellow dog Updater, Modified) i...
Table of contents Preface start step Troubleshoot...
Table of contents Install Docker on CentOS 8 1. U...
Diversifying website layouts is our front-end spe...
1. Check the firewall status Check the firewall s...
js array is probably familiar to everyone, becaus...
Preface The three-column layout, as the name sugg...
Table of contents Workaround Why can't I moni...
This article shares the specific code for JavaScr...
The specific code is as follows: <div id="...
Recommended reading: MySQL 8.0.19 supports accoun...
1. Enable remote access to the docker server Log ...
Step 1. Enable MySQL slow query Method 1: Modify ...
CAST function In the previous article, we mention...