Forum Moderators: not2easy
background-position: 10px center;
Will the 10px apply to the x or y axis? I'm assuming that center can be either a vertical or horizontal center (or should it be 'middle' for vertical?).
And there's a bug I found in Safari, which others have mentioned. It's sensitive to whether the 'no-repeat' value goes before or after the position values if you use the background attribute:
background: red url(image.gif) no-repeat top left;
apparently works but not
background: red url(image.gif) top left no-repeat;
Don't mix length/percentage values with keywords on the same element (so no background-position: 10px center;). IE and Mozilla will forgive you, but Opera will kick your ass for it (as I've just learned the hard way).
The full spec is at:
[w3.org ]