HTML table markup tutorial (41): width and height attributes of the table header WIDTH, HEIGHT

HTML table markup tutorial (41): width and height attributes of the table header WIDTH, HEIGHT

By default, the width and height of the header are automatically adjusted according to the content. We can also manually set the width and height of the header.
Basic syntax
<TH WIDTH=value HEIGHT=value>
Syntax explanation <br />The width of the header is defined by attributes, and the height of the header is defined by attributes, in pixels or percentages.
File example: 10-39.htm
Set the width and height of the header.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-39.htm -->
03 <!-- File Description: Set the width and height of the header-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the width and height of the header</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=1 WIDTH=400 HEIGHT=100>
12 <TR>
13 <TH WIDTH=300 height=50>Web Graphics Software</TH><TH>Fireworks</TH>
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 table's width as 400 pixels and its height as 100 pixels. Line 13 defines the width of the header to be 300 pixels and the height to be 50 pixels.

<<:  Detailed steps to enable SourceGuardian (sg11) encryption component on Linux virtual hosts

>>:  Vue.js implements the nine-grid image display module

Recommend

Detailed explanation of the usage of two types of temporary tables in MySQL

External temporary tables A temporary table creat...

HTML Web Page List Tags Learning Tutorial

HTML web page list tag learning tutorial. In HTML ...

How to use html2canvas to convert HTML code into images

Convert code to image using html2canvas is a very...

Some notes on installing fastdfs image in docker

1. Prepare the Docker environment 2. Search for f...

Determine whether MySQL update will lock the table through examples

Two cases: 1. With index 2. Without index Prerequ...

Summary of the three stages of visual designer growth

Many people have read this book: "Grow as a ...

Implementation of mysql backup strategy (full backup + incremental backup)

Table of contents Design scenario Technical Point...

Detailed explanation of common Docker commands

1. Help Command 1. View the current Docker versio...

A brief discussion on the underlying principle of mysql join

Table of contents join algorithm The difference b...

Docker solution for logging in without root privileges

When you use the docker command for the first tim...