|
Posted by Jonathan N. Little on 01/16/19 11:31
Giggle Girl wrote:
> Hi there,
> I need to use a background image in a TR that does NOT restart
> everytime it hits a TD. Can it be done?
>
> Specifically, if you set a background image for an entier table, now
> mater how many TRs and TDs you have, it will show the
> complete/unfragmented image (as long as you don't over-ride it).
>
> When I set a TR background image, every time I hit a TD it "re-seeds"
> the image. I want to have a TR that shows an 800px image in it's
> entirety, not a fragmented one.
>
> Is this possible?
>
> Ann
> PS: I am aware of an "old school" hack, where I can nest tables, making
> a new table in a TD that has the background I desire, but this is very
> inelegant methinks.
>
Which browser are you using?
TABLE
{
background-image: url(somebigimage.jpg); width: 800px; height: 600px;
}
TD
{
background-image: none;
}
Works in Mozilla 1.7x, Opera 7.4 MSIE 4-6 NN7.x Does work in old NN4.x
but not much does...
Also works when applied to TR but not sure how kosher, seems to display
same as when applied to TABLE element and is not confined to TR
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|