HTML table tag tutorial (8): background image attribute BACKGROUND

HTML table tag tutorial (8): background image attribute BACKGROUND

Set a background image for the table. You can use any GIF or JPEG image file.
Basic syntax
<TABLE 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-8.htm
Sets the background image of the table.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-8.htm -->
03 <!-- File Description: Set the background image of the table-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the background image 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 Background=10-8.jpg>
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 background image of the table as 10-8.JPG

<<:  Analysis of the principle of Rabbitmq heartbea heartbeat detection mechanism

>>:  An example of elegant writing of judgment in JavaScript

Recommend

Html long text automatically cuts off when it exceeds the tag width

When we display long text, we often need to interc...

Detailed example of IOS database upgrade data migration

Detailed example of IOS database upgrade data mig...

Docker builds Redis5.0 and mounts data

Table of contents 1. Simple mounting of persisten...

Teach you a trick to achieve text comparison in Linux

Preface In the process of writing code, we will i...

Docker deploys mysql remote connection to solve 2003 problems

Connecting to MySQL Here I use navicat to connect...

Six ways to reduce the size of Docker images

Since I started working on Vulhub in 2017, I have...

Implementation of ssh non-secret communication in linux

What is ssh Administrators can log in remotely to...

Detailed explanation of vite2.0+vue3 mobile project

1. Technical points involved vite version vue3 ts...

Docker installs ClickHouse and initializes data testing

Clickhouse Introduction ClickHouse is a column-or...

Detailed analysis of the usage and application scenarios of slots in Vue

What are slots? We know that in Vue, nothing can ...

W3C Tutorial (2): W3C Programs

The W3C standardization process is divided into 7...

Examples of correct use of maps in WeChat mini programs

Table of contents Preface 1. Preparation 2. Actua...

Building command line applications with JavaScript

Table of contents 1. Install node 2. Install Comm...

MySQL 8.0.20 installation and configuration detailed tutorial

This article shares with you a detailed tutorial ...