|
CodeAve.com - CSS - Page Display | |||
|
|
|||
| Background Image (No Repeat) | ||||
|
|
||||
<html> <head> <title>CodeAve.com/CSS - Body Background Image - No Repeat</title> <style type="text/css"> <!-- body {background-image: url(images/bg1.gif); background-repeat: no-repeat;} /* Setting the body tag with a background-image attribute set to background-repeat: no-repeat; will only display the image one time (repeat is the default setting) */ --> </style> </head> <body> <center> The background of this page has been set to an image style command set for the body tag, this is more impressive with a larger image </center> </body> </html>
|
||||
|
|
||||