Hast du das wirklich richtig umgesetzt, also was Spooky geschrieben hat? Denn dann geht es auch.
...also anstelle von deinem CSS in "bildschirm.css"
	Code:
	#main {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    line-height: 1.7;
    min-height: 200px;
}
 ...füge bitte die Zeile "box-sizing: border-box;" zusätzlich ein.
	Code:
	#main {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    line-height: 1.7;
    min-height: 200px;
    box-sizing: border-box;
}
 Ich habe es gerade ausprobiert.