Skip to content

Instantly share code, notes, and snippets.

@HusseinMorsy
Last active December 22, 2015 17:18
Show Gist options
  • Save HusseinMorsy/6505061 to your computer and use it in GitHub Desktop.
Save HusseinMorsy/6505061 to your computer and use it in GitHub Desktop.
Hiermit wird das natürliche Box-Modell aktiviert. Außerdem wird die Höhe auf 100% gestellt, damit Verläufe im Hintergrund die Seite voll ausfüllen. Wir im Buch Dreamweaver CC verwendet.
@charset "UTF-8";
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment