HTML Help - Table Cell Backgrounds

vern

Dominus
Political Access
Joined
2 Mar 2002
Messages
1,572
I set a background on a table cell ... I was wondering if this was possible ...

1. Set the background image of the cell to vertical align bottom.
2. With the above criteria met ... will it stop from repeating?
 
Hello, using "classic" html, noway !
Using css just add something like this in your style definition
background-image: url(image.gif);
background-position: bottom left;
background-repeat: no-repeat;

You must take on account that if you want to see all of your background image, the TD size (or TD contents size) must at least be the same than your image size

Here is a working example , you can cut and past in an empty html file.
PS : The images can be downloaded from this forum.
<html>
<head>
<title>Mon titre</title>
<style>
TD.right {
background-image: url(bottomright.gif);
background-position: bottom right;
background-repeat: no-repeat;
}
TD {
background-image: url(bottomleft.gif);
background-position: bottom left;
background-repeat: no-repeat;
}
</style>
</head>
<body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table border="1" cellpadding="0" cellspacing="0" background="infobg.gif">
<tr>
<td align="center" valign="middle" height=200 width=500>|</td>
<td align="center" valign="middle" height=200 width=500 class="right">|</td>
</tr>
</table>
</body>
</html>

Happy programming,
Meher.
France.
 
Great! This is just what I needed.
 

Members online

No members online now.

Latest profile posts

Also Hi EP and people. I found this place again while looking through a oooollllllldddd backup. I have filled over 10TB and was looking at my collection of antiques. Any bids on the 500Mhz Win 95 fix?
Any of the SP crew still out there?
Xie wrote on Electronic Punk's profile.
Impressed you have kept this alive this long EP! So many sites have come and gone. :(

Just did some crude math and I apparently joined almost 18yrs ago, how is that possible???
hello peeps... is been some time since i last came here.
Electronic Punk wrote on Sazar's profile.
Rest in peace my friend, been trying to find you and finally did in the worst way imaginable.

Forum statistics

Threads
62,015
Messages
673,494
Members
5,621
Latest member
naeemsafi
Back