Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

background image

Status
Not open for further replies.

jazzmaster111

Programmer
May 2, 2005
25
0
0
MX
Hi, I'm inserting a background image in my html page.

The image appears a lot of times filling the screen of the html page.

What can I do in order the image just appear once top and left???

Thanks!!
 
Set to no-repeat, no tiling and absolute position. Using CSS?
 
<style type="text/css">
body {
background-image: url('image.ext');
background-repeat: no-repeat;
}
</style>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top