Testing no-height 100% tall plus margin magic?

by Admiral Potato

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>OMG</title>
    </head>
    <body>
        <div id="magicHolder">
            <div class="title"><h3>This is Title</h3></div>
            <div class="body"><p>This is body, and a lot of it too. Look at all these words! Weeee! This is body, and a lot of it too. Look at all these words! Weeee! This is body, and a lot of it too. Look at all these words! Weeee! This is body, and a lot of it too. Look at all these words! Weeee! This is body, and a lot of it too. Look at all these words! Weeee! This is body, and a lot of it too. Look at all these words! Weeee!</p></div>
        </div>
    </body>
</html>

CSS

*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    text-align: inherit;
    text-decoration: inherit;
    color: inherit;
    background-color: transparent;
}
*:focus{
    outline: none;
}
html, body{
    height: 100%;
    width: 100%;
}

body{
    background-color: #000;
    background-image: url('http://kurzweil.com/img/bg.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    vertical-align: top;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: helvetica, arial, sans-serif;
    text-align: left;
    text-decoration: none;
    color: #ccc;
}

#magicHolder{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #369;
    margin: 32px;
    padding: 32px;
}

#magicHolder .title{
    margin:  -32px -32px 0 -32px;
    padding: 8px 8px 7px 8px;
    background-color: #47a;
    border-bottom: 1px solid #58b;
}
#magicHolder .body{
    background-color: #069;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 32px;
    padding: 32px;
}