Example of how to change the line spacing of HTML table

Example of how to change the line spacing of HTML table

When using HTML tables, we sometimes need to change the line spacing, but changing margin, padding, collapse and other methods are not very effective. Here I found a useful little trick. Use the display attribute + margin to achieve this.
example:

tr{margin-top:0px;padding:0px;display:block;}

Let's take a look at the comparison


tr{margin-top:-10px;padding:0px;display:block;}


It can be clearly seen that the line spacing has been shortened a lot.

Other solutions

Question:

The default display of tr in table is display:table-row. Although it can be changed to display:block, it will lose the unique display effects of tr, such as (automatic alignment of td);

And it is useful to set padding in tr, which can increase the inner margin, but it is useless to set margin, the outer spacing of tr is still 0;

Solution:

Two CSS properties: border-collapse:collapse / separate & border-spacing:10px 10px;

Need to use border-collapse & border-spacing to control the spacing of tr;

like:

<table style="border-collapse:separate; border-spacing:10px;">
    <tr></tr>
</table>

This is the end of this article about examples of how to change the line spacing of HTML tables. For more relevant content about HTML table line spacing, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  Sharing the structure and expression principles of simple web page layout

>>:  CSS3 uses transform-origin to achieve dot distribution on a large circle and rotation effects

Recommend

Vue implements adding watermark effect to the page

Recently, when I was working on a project, I was ...

Vue integrates Tencent Map to implement API (with DEMO)

Table of contents Writing Background Project Desc...

Detailed analysis of MySQL optimization of like and = performance

introduction Most people who have used databases ...

MySQL 8.0.17 installation and configuration method graphic tutorial

This article shares the installation and configur...

MySQL 5.7.17 installation and configuration method graphic tutorial under win7

I would like to share with you the graphic tutori...

Graphic tutorial for installing MySQL 5.6.35 on Windows 10 64-bit

1. Download MySQL Community Server 5.6.35 Downloa...

Vue complete code to implement single sign-on control

Here is a Vue single sign-on demo for your refere...

How to count down the date using bash

Need to know how many days there are before an im...

How to convert mysql bin-log log files to sql files

View mysqlbinlog version mysqlbinlog -V [--versio...

Detailed explanation of Vue3 sandbox mechanism

Table of contents Preface Browser compiled versio...

HTML+CSS to achieve surround reflection loading effect

This article mainly introduces the implementation...

Detailed explanation of application scenarios of filters in Vue

filter is generally used to filter certain values...

Determine whether MySQL update will lock the table through examples

Two cases: 1. With index 2. Without index Prerequ...

How to cancel the background color of the a tag when it is clicked in H5

1. Cancel the blue color of the a tag when it is ...