Marco Brummund: Background-Image will nicht

Beitrag lesen

Hallo an alle Helfer und HelfersHelfer ;)

ich bin / war heute mal wieder ein wenig am Rumbasteln und da kam mir ein sehr seltsames Problem unter.

Mit folgendem Quelltext bzw. CSS Code wird die Hintergrundgrafik angezeigt:

  
#texte  
			{  
			 margin-left      : 0px;  
			 margin-right     : 20px;  
                         padding-top      : 10px;  
                         padding-bottom   : 10px;  
			 width            : 320px;  
			 background-image : url('../bilder/diam.png');  
			 background-repeat: no-repeat;  
			 background-position: bottom right;  
			 text-align       : justify;  
			 float            : left;  
			}  

Sobald ich aber die Position auf feste Pixel bringen mag und selbige fixiere wird die Grafik nicht mehr angezeigt:

  
#texte  
			{  
			 margin-left      : 0px;  
			 margin-right     : 20px;  
                         padding-top      : 10px;  
                         padding-bottom   : 10px;  
			 width            : 320px;  
			 background-image : url('../bilder/diam.png');  
			 background-repeat: no-repeat;  
			 background-attachment: fixed;  
			 background-position: 170px 280px;  
			 text-align       : justify;  
			 float            : left;  
			}  

Die aufzurufende Grafik hat Abmessungen von 130 x 183 px.
Der Texte-Div ist 320px breit, der umschließende "Inhalt"-Div 480px hoch und nur nach unten scrollbar.

Neben dem "Texte"-Div wird noch ein Bilder-Div aufgerufen, deshalb das float.

Beißen sich etwa float und background-position oder wo liegt mein Fehler? Ich zweifel schon an mir selber ... :(

Getestet bis jetzt auf FF3 und IE7.

vielen Dank im voraus.