Editar o código:
ver o resultado »
Tente você mesmo - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
body
{
background-image
:
url("paper.gif")
;
background-repeat
:
no-repeat
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
no-repeat will not repeat a background image. The image will only be shown once.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> body { background-image: url("paper.gif"); background-repeat: no-repeat; } </style> </head> <body> <p>no-repeat will not repeat a background image. The image will only be shown once.</p> </body> </html>