How can I make a background image appear only once?

R

Realmaggie

I have an image that I want to use as my background but it repeats himself.
What can I do about this?
 
L

Linda R

Realmaggie said:
I have an image that I want to use as my background but it repeats himself.
What can I do about this?

Here's one way:

<style type="text/css">
<!--
body {
background-image: url(background.gif);
background-repeat: no-repeat;
}
-->
</style>
 
Top