HTML table tag tutorial (31): cell width and height attributes WIDTH, HEIGHT

HTML table tag tutorial (31): cell width and height attributes WIDTH, HEIGHT

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

<<:  Using zabbix to monitor the ogg process (Linux platform)

>>:  Native JS to implement sharing sidebar

Recommend

MySQL 8.0.20 installation and configuration method graphic tutorial

MySQL download and installation (version 8.0.20) ...

An example of how JavaScript can prevent duplicate network requests

Preface During development, we often encounter va...

How to submit a pure HTML page, pass parameters, and verify identity

Since the project requires a questionnaire, but th...

Usage of MySQL time difference functions TIMESTAMPDIFF and DATEDIFF

Usage of time difference functions TIMESTAMPDIFF ...

Detailed installation tutorial of mysql 5.7.11 under Win7 system

Operating system: Win7 64-bit Ultimate Edition My...

WeChat applet implements a simple dice game

This article shares the specific code of the WeCh...

Introduction to the use of common Dockerfile commands

Table of contents 01 CMD 02 ENTRYPOINT 03 WORKDIR...

Solve the group by query problem after upgrading Mysql to 5.7

Find the problem After upgrading MySQL to MySQL 5...

HTML Several Special Dividing Line Effects

1. Basic lines 2. Special effects (the effects ar...

Detailed explanation of MySQL sql99 syntax inner join and non-equivalent join

#Case: Query employee salary levels SELECT salary...