repeating gif

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

Is there any way to have a GIF background image NOT repeat and tile itself
across a large screen.

Set at 1024 x 768 the image "tiles." Is there any way to prevent this
tiling?

I'd like the image (text only on white background) to layout just once and
then have white around everything else.

Making sense here? I think you'll understand.

THANKS!
 
JT said:
Is there any way to have a GIF background image NOT repeat and tile
itself across a large screen.

Set at 1024 x 768 the image "tiles." Is there any way to prevent
this tiling?

I'd like the image (text only on white background) to layout just
once and then have white around everything else.

Making sense here? I think you'll understand.

THANKS!

You need a no-repeat in your CSS
e.g.
body {
background-color: white
background-image: url("my.gif");
background-repeat: no-repeat;
background-attachment: fixed; }
 
Back
Top