Skip to content

Instantly share code, notes, and snippets.

@seoagentur-hamburg
Created April 13, 2013 17:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seoagentur-hamburg/5379200 to your computer and use it in GitHub Desktop.
Save seoagentur-hamburg/5379200 to your computer and use it in GitHub Desktop.
The CSS for fullpage background images
img.hintergrundbild {
min-height: 100%; /* Diese zwei Zeilen setzen die Regeln um den Hintergrund zu füllen */
min-width: 1024px;
width: 100%; /* Die Regeln, welche für die Skalierung sorgen */
height: auto;
position: fixed; /* Die Positionierung */
top: 0;
left: 0;
}
@media screen and (max-width: 1024px) {
img.hintergrundbild {
left: 50%; /* Ohne diese Angaben funktioniert es nicht */
margin-left: -512px;
}
}
div#inhalt {
position: relative; /* Diese Angabe ist extrem wichtig, da ansonsten der Inhalt nicht angezeigt wird! */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment