Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
body
{
background-image
:
url("paper.gif")
;
background-repeat
:
repeat-y
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
repeat-y will repeat a background image only vertically.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style>body { background-image: url("paper.gif"); background-repeat: repeat-y; } </style> </head> <body> <p>repeat-y will repeat a background image only vertically.</p> </body> </html>
Result:
Privacy Policy