|
-
Mar 30th, 2002, 02:08 PM
#1
Thread Starter
Lively Member
Pictures Tiled on Tables
how can i add a picture to the background of my tables rather than a colour (ie #33cc66), also i have very basic html knowledge so a simple an explanation as possible pls
thanks
-
Mar 30th, 2002, 02:15 PM
#2
Stuck in the 80s
Like follows:
Code:
<table background="picture.gif">
<!-- or -->
<td background="picture.gif">
It's that simple.
-
Mar 30th, 2002, 02:32 PM
#3
Thread Starter
Lively Member
-
Mar 30th, 2002, 03:15 PM
#4
Stuck in the 80s
Depends on what browser your using. For IE, you'd have to have something in the cell, a space would do, then just do:
Code:
<td width="100" height="100"> </td>
-
Mar 30th, 2002, 04:55 PM
#5
Member
FYI, a td background, surprise surprise, doesn't work in NS4, only a table background does.
-
Mar 31st, 2002, 12:44 AM
#6
Stuck in the 80s
Originally posted by filburt1
FYI, a td background, surprise surprise, doesn't work in NS4, only a table background does.
I thought you said "screw NS4" in another thread...change your mind already?
-
Mar 31st, 2002, 07:22 AM
#7
Fanatic Member
Re: Pictures Tiled on Tables
Originally posted by Paxthegreat
how can i add a picture to the background of my tables rather than a colour (ie #33cc66), also i have very basic html knowledge so a simple an explanation as possible pls
thanks
ok, just take a look @ this:
will display "image1.gif" behind all text in cell-1, and will tile itself when image is smaller than the cell
Code:
<table>
<tr>
<td background="image1.gif">
Cell1
</td>
<td">
Cell2
</td>
</tr>
</table>
This however will spread the image throughout the entire table, and also tiles itself ....
Code:
<table background="image1.gif">
<tr>
<td>
Cell1
</td>
<td">
Cell2
</td>
</tr>
</table>
hope this is of some help
-
Mar 31st, 2002, 07:37 AM
#8
Thread Starter
Lively Member
unreal thanks, that worked gr8
-
Mar 31st, 2002, 07:25 PM
#9
Stuck in the 80s
Re: Re: Pictures Tiled on Tables
Originally posted by ubunreal69
ok, just take a look @ this:
will display "image1.gif" behind all text in cell-1, and will tile itself when image is smaller than the cell
Code:
<table>
<tr>
<td background="image1.gif">
Cell1
</td>
<td">
Cell2
</td>
</tr>
</table>
This however will spread the image throughout the entire table, and also tiles itself ....
Code:
<table background="image1.gif">
<tr>
<td>
Cell1
</td>
<td">
Cell2
</td>
</tr>
</table>
hope this is of some help
Yeah...just like I said...
-
Apr 1st, 2002, 02:47 AM
#10
Fanatic Member
Re: Re: Re: Pictures Tiled on Tables
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|