HTML table tag tutorial (13): internal border style attributes RULES

HTML table tag tutorial (13): internal border style attributes RULES

RULES can be used to control the style of the internal border of the table.
Basic syntax
<TABLE reles="value">
Syntax
The values ​​of value are shown in the following table:
Table internal border style property value Description All Display all internal borders Cols Display row borders only Groups Display borders between rows and columns None Do not display internal borders Rows Display column borders only
Document example: 10-13.htm
Sets the style of the table's inner border.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-13.htm -->
03 <!--File Description: Set the internal border style of the table-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the internal border style of the table</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 CellSpacing=10 CellPadding=25 ALIGN="CENTER" rules=rows>
12 <TR>
13 <TD>Web Graphics Software</TD><TD>Fireworks</TD>
14 </TR>
15 <TR>
16 <TD>Web page creation software</TD><TD>Dreamweaver</TD>
17 </TR>
18 <TR>
19 <TD>Web animation software</TD><TD>Flash</TD>
20 </TR>
21 </TABLE>
22 </BODY>
23 </HTML>
File Description <br />Line 11 defines the internal border style of the table to display only row borders.

<<:  Native JS to achieve draggable login box

>>:  Solution to mysql error code 1064

Recommend

How to view and optimize MySql indexes

MySQL supports hash and btree indexes. InnoDB and...

The principle and basic use of Vue.use() in Vue

Table of contents Preface 1. Understanding with e...

Analysis of MySQL data backup and recovery implementation methods

This article uses examples to describe how to bac...

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command ...

Why is IE6 used by the most people?

First and foremost, I am a web designer. To be mor...

Implementation of nacos1.3.0 built with docker

1. Resume nacos database Database name nacos_conf...

Learn the common methods and techniques in JS arrays and become a master

Table of contents splice() Method join() Method r...

How to set Nginx log printing post request parameters

【Foreword】 The SMS function of our project is to ...

Centos7.5 installs mysql5.7.24 binary package deployment

1. Environmental preparation: Operating system: C...

Analysis of the cause of docker error Exited (1) 4 minutes ago

Docker error 1. Check the cause docker logs nexus...

Write a React-like framework from scratch

Recently I saw the article Build your own React o...