How to display the border when td is empty

How to display the border when td is empty
Previously, I summarized how to use CSS to achieve the border + bordercolordark + bordercolorlight effects of a table. Then a netizen asked me why he wrote a similar CSS style, but the table border effect can only be seen normally under Opera, but nothing under IE.
I downloaded Opera 9 and saw that it was indeed the case. The reason is not complicated: because in IE (Firefox seems to be the same as IE), if the content of a td is empty, even if you set the height and width, the border style of the cell will not be displayed; Opera applies the style to render regardless of whether there is content or not. I encountered this problem right after I graduated. The section chief of the department came to ask me, and I told him: Just add it to each empty td. Whenever I encounter this problem in the future, I will use this simple, rough and effective method to solve it.
But today I made great efforts to study it a bit, and learned from Jiarry that the original CSS syntax allows us to change these default behaviors: using border-collapse:collapse; and empty-cells:show; can make the disappeared border appear.
class="test1": add border-collapse:collapse;
.test1{
border:1px solid #999999;
border-collapse:collapse;
width:60%
}
.test1 td{
border-bottom:1px solid #999999;
height:28px;
padding-left:6px;
}
class1 Here is the content Here is the content
class="test2": add border-collapse:collapse; and empty-cells:show;
.test2{
border:1px solid black;
border-collapse:collapse;
width:60%
}
.test2 td{
border-bottom:1px solid black;
height:28px;
padding-left:6px;
empty-cells:show;
}
class2 Here is the content Here is the content
class="test3": Without border-collapse:collapse; and empty-cells:show;
.test3{
border:1px solid #999999;
width:60%
}
.test3 td{
border-bottom:1px solid #999999;
height:28px;
padding-left:6px;
}
class3 Here is the content Here is the content

<<:  Examples of using MySQL covering indexes

>>:  Analysis and solution of the reason why overflow-y: visible; does not work in CSS

Recommend

MySQL 5.6.23 Installation and Configuration Environment Variables Tutorial

This article shares the installation and configur...

CSS scroll-snap scroll event stop and element position detection implementation

1. Scroll Snap is a must-have skill for front-end...

Install Docker on CentOS 7

If you don't have a Linux system, please refe...

How to create a new user in CentOS and enable key login

Table of contents Create a new user Authorize new...

v-for directive in vue completes list rendering

Table of contents 1. List traversal 2. The role o...

Linux uses bond to implement dual network cards to bind a single IP sample code

In order to provide high availability of the netw...

How to use pdf.js to preview pdf files in Vue

When we preview PDF on the page, some files canno...

On good design

<br />For every ten thousand people who answ...

js to create a carousel effect

I think the carousel is a relatively important po...

WeChat applet canvas implements signature function

In the WeChat applet project, the development mod...

How to install mysql6 initialization installation password under centos7

1. Stop the database server first service mysqld ...

A brief introduction to the usage of decimal type in MySQL

The floating-point types supported in MySQL are F...