HTML table markup tutorial (37): background image attribute BACKGROUND

HTML table markup tutorial (37): background image attribute BACKGROUND

Set the background image for the table header. You can use any GIF or JPEG image file.
Basic syntax
<TH BACKGROUND=FILE_name>
Syntax explanation <br />When defining a background image, write down the full path or relative path of the image file.
File example: 10-35.htm
Set the background image of the table header.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-35.htm -->
03 <!-- File Description: Set the background image of the header -->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the background image of the header</TITLE>
08 </HEAD>
09 <BODY>
10 <H1>Mainstream web design software</H1>
11 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699>
12 <TR>
13 <TH Background=10-8.jpg>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 13 defines the background image of the header as 10-8.jpg.

<<:  Tomcat uses thread pool to handle remote concurrent requests

>>:  WeChat applet custom bottom navigation bar component

Recommend

How to use the Linux nl command

1. Command Introduction nl (Number of Lines) adds...

Detailed explanation of encoding issues during MySQL command line operations

1. Check the MySQL database encoding mysql -u use...

A Brief Analysis of MySQL - MVCC

Version Chain In InnoDB engine tables, there are ...

Summary of 28 common JavaScript string methods and usage tips

Table of contents Preface 1. Get the length of a ...

Detailed instructions for installing Jenkins on Ubuntu 16.04

1. Prerequisites JDK has been installed echo $PAT...

Implementation of remote Linux development using vscode

Say goodbye to the past Before vscode had remote ...

TypeScript installation and use and basic data types

The first step is to install TypeScript globally ...

A summary of some of the places where I spent time on TypeScript

Record some of the places where you spent time on...

First experience of creating text with javascript Three.js

Table of contents Effect Start creating text Firs...

Detailed explanation of how to customize the style of CSS scroll bars

This article introduces the CSS scrollbar selecto...

Vue calls the computer camera to realize the photo function

This article example shares the specific code of ...

Summary of 10 common HBase operation and maintenance tools

Abstract: HBase comes with many operation and mai...