For firefox, the following document renders differently in standards mode then in quirks mode. In quirks mode, the div fills the screen, however in standards mode it does not. I read through the MDN quirks list and couldn't seem to find a behavior to blame. While it'd be cool to know the quirk, my question is really how can I replicate the quirks mode behavior in standards mode?
<!DOCTYPE html>
<!-- remove doctype for quirks mode rendering -->
<head>
<style>
#test {
height:100%;
background:black;
}
</style>
</head>
<body>
<div id="test">
content
</div>
</body>
If this is acceptable, you can try another measure, for example, 'vh':
vh - Equivalent to 1% of the height of the browser window. vw - Equivalent to 1% of the width of the browser window.