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

Three ways to configure JNDI data source in Tomcat

In my past work, the development server was gener...

Tutorial on installing Tomcat server under Windows

1 Download and prepare First, we need to download...

10 Best Practices for Building and Maintaining Large-Scale Vue.js Projects

Table of contents 1. Use slots to make components...

Detailed explanation of the execution process of mysql update statement

There was an article about the execution process ...

Summary of Linux Logical Volume Management (LVM) usage

Managing disk space is an important daily task fo...

How to use JS code compiler Monaco

Preface My needs are syntax highlighting, functio...

Summary of several common ways to abbreviate javascript code

Table of contents Preface Arrow Functions Master ...

How to start/stop Tomcat server in Java

1. Project Structure 2.CallTomcat.java package co...

MySQL database connection exception summary (worth collecting)

I found a strange problem when deploying the proj...

Tutorial on installing and using virtualenv in Deepin

virtualenv is a tool for creating isolated Python...

Methods and problems encountered in installing mariadb in centos under mysql

Delete the previously installed mariadb 1. Use rp...

Vue song progress bar sample code

Note that this is not a project created by vue-cl...

Theory Popularization——User Experience

1. Concept Analysis 1: UE User Experience <br ...

Let IE6, IE7, IE8 support CSS3 rounded corners and shadow styles

I want to make a page using CSS3 rounded corners ...