tags:

views:

63

answers:

2

How can I center a background?

+5  A: 

background-position:center;

Mr Snuffle
+2  A: 

You can also use percentages, so

background-position: 50% 0;

would centre the background horizontally. The beauty of percentages is they offers greater flexibility than keywords. You can position a background a quarter of the way across the screen with,

background-position: 25% 0;

and a quarter of the way across and 3 quarters of the way down with,

background-position: 25% 75%;
paulb