How to hide the border/separation line between cells in a table

How to hide the border/separation line between cells in a table
Only show the top border <table frame=above>
Only show the bottom border <table frame=below>
Only show left and right borders <table frame=vsides>
Only display the top and bottom borders <table frame=hsides>
Only show the left border <table frame=lhs>
Only show the right border <table frame=rhs>
Do not display any border <table frame=void>


The trick to displaying and hiding the table cell separators lies in the rules, which are contained in the <TABLE> tag. It has three parameters (cols, rows, none). When rules=cols, the table will hide the vertical separator lines so that we can only see the rows of the table; when rules=rows, the horizontal separator lines will be hidden so that we can only see the columns of the table; and when rules=none, both the vertical and horizontal separator lines will be hidden.
Remove vertical separator lines <table rules=cols>
Remove horizontal separator lines <table rules=rows>
Remove vertical and horizontal separators <table rules=none>

<<:  Detailed explanation of the usage of 5 different values ​​of CSS position

>>:  MySQL batch adding and storing method examples

Recommend

What are the core modules of node.js

Table of contents Global Object Global objects an...

Linux kernel device driver virtual file system notes

/******************** * Virtual File System VFS *...

W3C Tutorial (15): W3C SMIL Activities

SMIL adds support for timing and media synchroniz...

HTML Tutorial: Collection of commonly used HTML tags (4)

Related articles: Beginners learn some HTML tags ...

How to handle MySQL numeric type overflow

Now, let me ask you a question. What happens when...

Tutorial on installing the unpacked version of mysql5.7 on CentOS 7

1. Unzip the mysql compressed package to the /usr...

Simple steps to create a MySQL container with Docker

Preface We have already installed Docker and have...

Detailed explanation of basic management of KVM virtualization in CentOS7

1. Install kvm virtualization : : : : : : : : : :...

A friendly alternative to find in Linux (fd command)

The fd command provides a simple and straightforw...

Detailed explanation of the use of title tags and paragraph tags in XHTML

XHTML Headings Overview When we write Word docume...

Detailed process of implementing the 2048 mini game in WeChat applet

Rendering Example Code Today we are going to use ...

Detailed explanation of the use of CSS3 rgb and rgba (transparent color)

I believe everyone is very sensitive to colors. C...

Detailed explanation of Angular parent-child component communication

Table of contents Overview 1. Overview of input a...

Detailed example of MySQL data storage process parameters

There are three types of MySQL stored procedure p...