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

XHTML Getting Started Tutorial: Simple Web Page Creation

Create your first web page in one minute: Let'...

Detailed explanation of binary and varbinary data types in MySQL

Preface BINARY and VARBINARY are somewhat similar...

JavaScript method to detect the type of file

Table of contents 1. How to view the binary data ...

New ideas for time formatting in JavaScript toLocaleString()

Table of contents 1. Conventional ideas for time ...

Solve the problem that ElementUI custom CSS style does not take effect

For example, there is an input box <el-input r...

MySQL 5.6 installation steps with pictures and text

MySQL is an open source small relational database...

Vue.js implements image switching function

This article shares the specific code of Vue.js t...

10 Tips for Mobile App User Interface Design

Tip 1: Stay focused The best mobile apps focus on...

A complete explanation of MySQL high availability architecture: MHA architecture

Table of contents 1. Introduction 2. Composition ...

MySQL case when usage example analysis

First we create the database table: CREATE TABLE ...

CSS code for arranging photos in Moments

First, you can open Moments and observe several l...

Detailed explanation of four solutions to floating problems in CSS layout

1. Cause: The effect after the subbox is set to f...