Hallöchen,
.html {height:100%;}
.body {height:100%;}
.content {height:100%;}Das klappt leider beim IE55 nicht
Das liegt daran, dass das Elternelement von content nicht body ist. Du hast noch ein center dazwischen geklemmt.
html {height:100%;}
body {height:100%;}
.center {height:100%;}
.content {height:100%;}
Grüße,
Jochen