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

Tutorial on setting up scheduled tasks to backup the Oracle database under Linux

1. Check the character set of the database The ch...

Summarize the User-Agent of popular browsers

1. Basic knowledge: Http Header User-Agent User A...

Comparison of various ways to measure the performance of JavaScript functions

Table of contents Overview Performance.now Consol...

Full analysis of web page elements

Relative Length Units em Description: Relative len...

When MySQL is upgraded to 5.7, WordPress reports error 1067 when importing data

I recently upgraded MySQL to 5.7, and WordPress r...

MySQL 5.7.21 installation and configuration method graphic tutorial (window)

Install mysql5.7.21 in the window environment. Th...

Differences between this keyword in NodeJS and browsers

Preface Anyone who has learned JavaScript must be...

Web Design Principles of Hyperlinks

<br />Related articles: 9 practical tips for...

Don’t bother with JavaScript if you can do it with CSS

Preface Any application that can be written in Ja...

Introduction to the use of several special attribute tags in HTML

The following attributes are not very compatible w...

Detailed explanation of JSONObject usage

JSONObject is just a data structure, which can be...

MySQL query data by hour, fill in 0 if there is no data

Demand background A statistical interface, the fr...

JavaScript object-oriented implementation of magnifying glass case

This article shares the specific code of JavaScri...