1

I want to add margin on top of the background image. Here is my background-image css code

body {
  background-image:url(Images/Home.png);
  background-position:top;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

I tried to add margin-top:10px; in the css body code, but it's not working. Only the div's moving

Ruffy R
  • 11
  • 1
  • 5

3 Answers3

2

How about the following instead of the one you have for background-position?

background-position:0px 10px;
Ashraf Iqbal
  • 332
  • 1
  • 10
0

This will offset the background-image from the top by 10 pixels:

background-position: top 10px;
pp_
  • 3,171
  • 3
  • 17
  • 27
0

You could add a div before the body, set it's height to 10px. Should give you the spacing you're looking for.