Detailed explanation of the frame and rules attributes of the table in HTML

Detailed explanation of the frame and rules attributes of the table in HTML

The frame and rules attributes of the table tag can control the display of the border. The frame property controls the visibility of the four outermost borders of the table, while the rules control the visibility of the inner borders of the table.
The possible values ​​and meanings of the frame attribute are as follows:
* void - the default value. Indicates that the outermost border of the table is not displayed.
* box - Displays four borders at the same time.
* border - Display four borders at the same time.
* above - only show the top border.
* below - Show only the bottom border.
* lhs - Show only the left border.
* rhs - Show only the right side border.
* hsides - only show the two horizontal borders.
* vsides - only show the two vertical borders.
There are five possible values ​​for the rules attribute:
* none - The default value. No border.
* groups - add borders to row or column groups.
* rows - add borders to the rows.
* cols - add borders to the columns.
* all - add borders to all rows and columns (cells)


Code example:

XML/HTML CodeCopy content to clipboard
  1. < table   border = "1"   width = "600"   frame = "hsides"   rules = "groups" >   
  2.       < caption > My Ultimate Table </ caption >   
  3.       < colgroup   span = "1"   width = "200" > </ colgroup >   
  4.       < colgroup   span = "3"   width = "400" > </ colgroup >   
  5.   
  6. < thead >   
  7.       < tr >   
  8.            < td > cell 1-1 </ td >   
  9.            < td > cell 1-2 </ td >   
  10.            < td > cell 1-3 </ td >   
  11.            < td > cell 1-4 </ td >   
  12.       </ tr >   
  13. </ thead >   
  14. < tfoot >   
  15.       < tr >   
  16.            < td > cell 4-1 </ td >   
  17.            < td > cell 4-2 </ td >   
  18.            < td > cell 4-3 </ td >   
  19.            < td > cell 4-4 </ td >   
  20.       </ tr >   
  21. </ tfoot >   
  22. < tbody >   
  23.       < tr >   
  24.            < td > cell 2-1 </ td >   
  25.            < td > cell 2-2 </ td >   
  26.            < td > cell 2-3 </ td >   
  27.            < td > cell 2-4 </ td >   
  28.       </ tr >   
  29.       < tr >   
  30.            < td > cell 3-1 </ td >   
  31.            < td > cell 3-2 </ td >   
  32.            < td > cell 3-3 </ td >   
  33.            < td > cell 3-4 </ td >   
  34.       </ tr >   
  35. </ tbody >   
  36. </ table >   

The display effect in the browser is as follows:
201678140942598.jpg (599×127)

<<:  MySQL sorting feature details

>>:  Use momentJs to make a countdown component (example code)

Recommend

Three steps to solve the IE address bar ICON display problem

<br />This web page production skills tutori...

What are the benefits of using // instead of http:// (adaptive https)

//Default protocol /The use of the default protoc...

Designing the experience: What’s on the button

<br />Recently, UCDChina wrote a series of a...

js code that associates the button with the enter key

Copy code The code is as follows: <html> &l...

Vue.js handles Icon icons through components

Icon icon processing solution The goal of this re...

Detailed process of SpringBoot integrating Docker

Table of contents 1. Demo Project 1.1 Interface P...

Analysis of the event loop mechanism of js

Preface As we all know, JavaScript is single-thre...

Summary of the top ten problems of MySQL index failure

Table of contents background 1. The query conditi...

VMware vSphere 6.7 (ESXI 6.7) graphic installation steps

Environment: VMware VCSA 6.7 (VMware-VCSA-all-6.7...

Nginx configuration based on multiple domain names, ports, IP virtual hosts

1. Type introduction 1.1 Domain-based virtual hos...

Briefly describe the four transaction isolation levels of MySql

Isolation Level: Isolation is more complicated th...

Automated front-end deployment based on Docker, Nginx and Jenkins

Table of contents Preliminary preparation Deploym...

Detailed explanation of MySQL database paradigm

Preface: I have often heard about database paradi...

A Brief Analysis of MySQL - MVCC

Version Chain In InnoDB engine tables, there are ...