Darren
Darren

Reputation: 43

Make a background image static?

So, I'm trying to make the background image static, and have the foreground content move over it. Having some issues, what am I doing wrong? Here is my current code.

body
{
color: #000;
margin: 10px 0px 10px 0px; 
background-color: #ffffff;
background-image:url('http://userlogos.org/files/backgrounds/Mafia_Penguin/Map1280x800.jpg');
background-repeat:no-repeat;
font-family: Arial, Helvetica, sans-serif;
}

Upvotes: 4

Views: 9677

Answers (1)

kennytm
kennytm

Reputation: 523184

You need to set the background-attachment property to fix the background image.

background-attachment: fixed;

Upvotes: 10

Related Questions