Hallo,
habe mein Hintergrundbild fixiert. Möchte aber das es sich der jeweiligen Auflösung
des Besuchers anpasst.
Wer kann mir helfen ???
Code:
body
{ font: normal 80% Arial, Helvetica, sans-serif;
color: #000;
text-shadow: 1px 1px #FFF;
background: transparent url(../images/background.jpg) fixed;}
Ist erledigt...
falls jemand das gleiche Problem hat -->
Code:
body
{ font: normal 80% Arial, Helvetica, sans-serif;
color: #000;
text-shadow: 1px 1px #FFF;
background: url(../images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}