
Information
The Basics
Text
Pictures
Spacing
Colors
Links
Alignment
Lists/Bullets
Tables
Frames
Multimedia
Forms
ISO Characters
Meta Tags
Contact Us

Email Support
Email Contact
|
 |
 |
Introduction
Table background picture allows you to specify the background of a table cell to be a picture. This allows you to type normal
text over a picture.
Table Picture
To insert a background into one of your table cells, you will need to add the tag BACKGROUND="url". This tag adds onto the
<TD> tag, so the final result looks like
<TD BACKGROUND="url">
The text, url, is replaced with the internet address of the picture you want to show up. A helpful thing to add here, is
the width and height attribute, matching the dimensions of the picture. Here is an example, using the Table Picture tag.
|
index.html - Notepad |
....<BODY>
<TABLE><TR>
<TD BACKGROUND="images/ex.gif" WIDTH="60" HEIGHT="35">
Hello!
</TD></TR></TABLE>
</BODY>....
|
|
|
My Homepage - Microsoft Internet Explorer |
|
|
Test Your HTML
|
|