Dada: background-position/position

Beitrag lesen

Hi,

Oder hat fixed auch Auswirkungen auf das, was in background-position angegeben ist?

Ja.

cu,
Andreas

Die Auswirkungen haben mich bisher nicht so tangiert, da es egal war, ob dieser (Hintergrund-)Schriftzug etwas mehr links oder unten saß. Aber es ist gut zu wissen:

If the background image is fixed within the viewport (see the 'background-attachment' property), the image is placed relative to the viewport instead of the element's padding area. For example,

Example(s):

body {
  background-image: url("logo.png");
  background-attachment: fixed;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

In the example above, the (single) image is placed in the lower-right corner of the viewport.
[http://www.w3.org/TR/CSS21/colors.html#propdef-background-position]

Mit Gruß
Dada