When we add borders to table and td tags, double borders are used by default, like this. If we want to merge the borders of table and td, we can set the border-collapse attribute value to collapse in the table style. As shown below: Look at the effect again: To make it easier to replicate, here is the code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> table{ border: 1px solid blue;/*Add border to the table*/ border-collapse: collapse;/*Merge borders*/ } td{ border: 1px solid blue;/*Add border to cell*/ } </style> </head> <body> <table> <tr> <td>1.1</td> <td>1.2</td> </tr> <tr> <td>2.1</td> <td>2.2</td> </tr> </table> </body> </html> This concludes this article about the sample code for html+css merging table borders. For more relevant html merging table borders content, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Detailed example of locating and optimizing slow query sql in MySQL
>>: About the difference between inspecting elements and viewing the source code of a web page
mysql-8.0.19-winx64 downloaded from the official ...
Table of contents 1. ChildNodes attribute travers...
I don't know when it started, but every time ...
Common scenarios of MySQL: getting the intersecti...
My computer graphics card is Nvidia graphics card...
Table of contents Preface 1. Deployment and Confi...
1. What is We can split the communication between...
There is a table student in the mysql database, i...
1. Briefly describe the traditional LRU linked li...
Table of contents Preface 1. Prepare new partitio...
Recently Microsoft released Windows Server 2016, ...
1. Download Dependency npm install @antv/data-set...
In the article MySQL Optimization: Cache Optimiza...
This article describes the import and export oper...
If every company wants to increase its user base,...