Last active
December 22, 2015 17:18
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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