Realestate in Australia
Delta banner made by Mariaivy
Home
CSS Home
CSS Linked
CSS in Page
CSS B/Ground
Without CSS
With CSS
Design CSS

Using CSS to add Back Ground Image

Back Ground at top of page

<style type="text/css">
body
{
background-image:
url("./images/dd.jpg");
background-repeat: repeat-x
}
</style>

Example

Back Ground at left side of page

<style type="text/css">
body
{
background-image:
url("./images/dd.jpg");
background-repeat: repeat-y
}
</style>

Example

Full Back Ground

<style type="text/css">
body
{
background-image:
url("./images/dd.jpg")
}
</style>

Example

 

 

Valid HTML 4.01!