HTML table tag tutorial (12): border style attribute FRAME

HTML table tag tutorial (12): border style attribute FRAME

Use the FRAME property to control the style type of the table border.
Basic syntax
<TABLE Frame="value">
Syntax
The values ​​of VALUE are shown in the following table:
Table border style property value description Above Display top border Below Display bottom border Border Display top, bottom, left, and right borders Box Display top, bottom, left, and right borders Hsides Display top and bottom borders Lhs Display left border Rhs Display right border Void Do not display borders Vsides Display left and right borders
File example: 10-12.htm
Sets the border style of the table.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-12.htm -->
03 <!-- File Description: Set the border style of the table-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the 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" frame=vsides>
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 border style of the table to display only the left and right borders.

<<:  Docker Nginx container production and deployment implementation method

>>:  Implementation of converting between underline and camel case in js (multiple methods)

Recommend

Discussion on horizontal and vertical centering of elements in HTML

When we design a page, we often need to center th...

How to dynamically add a volume to a running Docker container

Someone asked me before whether it is possible to...

MySQL table and column comments summary

Just like code, you can add comments to tables an...

MySQL 5.7 installation and configuration tutorial under CentOS7 64 bit

Installation environment: CentOS7 64-bit MINI ver...

Automatic backup of MySQL database using shell script

Automatic backup of MySQL database using shell sc...

zabbix custom monitoring nginx status implementation process

Table of contents Zabbix custom monitoring nginx ...

How to start a Java program in docker

Create a simple Spring boot web project Use the i...

mysql trigger creation and usage examples

Table of contents What is a trigger Create a trig...

Implementation of HTML sliding floating ball menu effect

CSS Styles html,body{ width: 100%; height: 100%; ...

Sample code for a large drop-down menu implemented in pure CSS

This is a large drop-down menu implemented purely...

Ways to improve MongoDB performance

MongoDB is a high-performance database, but in th...

Quickly solve the problem of slow startup after Tomcat reconfiguration

During the configuration of Jenkins+Tomcat server...

Solution to the problem that Docker container cannot be stopped or killed

Docker version 1.13.1 Problem Process A MySQL con...

How to purchase and install Alibaba Cloud servers

1. Purchase a server In the example, the server p...