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