Generally, when we use a table, we always give it a border attribute, such as: <table border="1">, the effect is as follows:
You can see that the border of the table seems to be very wide. Of course, the "very wide" here is definitely not the width of the table border. The width you see is probably due to the gaps between the <td> tags. Therefore, you only need to modify the cellspacing attribute of the table, that is: <table border="1px" cellspacing="0px">, the effect is as follows:
However, it seems that the width is not as wide as we imagined: only one pixel wide. In fact, what you see in the above picture is actually two pixels wide. Why? This is because the borders between <td> do not overlap. Just modify the border-collapse property of the table. That is, <table border="1px" cellspacing="0px" style="border-collapse:collapse">
Add a color to the table, <table border="1px" bordercolor="#000000" cellspacing="0px" style="border-collapse:collapse">
|
<<: Solution to the Docker container cannot be stopped and deleted
>>: Complete step record of vue encapsulation TabBar component
Recently, due to business adjustments in the comp...
Table of contents First of all, you need to know ...
The JD carousel was implemented using pure HTML a...
In the past, almost every website had a sitemap p...
Preface In today's increasingly convenient In...
In CSS3, the transform function can be used to im...
Some projects have relatively simple business, bu...
As the number of visits to the company's webs...
1. Cause The official cerbot is too annoying. It ...
Table of contents Preface Related Materials Vue p...
Table of contents 1. Overview of Docker consul 2....
In normal development, we usually use convex roun...
Table of contents 1. Date 2. RegExp 3. Original p...
This article shares the specific code of js to re...
The specific code is as follows: /*Scroll bar wid...