I have trouble to create a page with full screen div with h1 element.
Following page is rendered correctly by IE and Chrome as expected: Contains Red full-screen div, no scroll-bars:
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>title</title>
<style>
html {
background-color: purple;
}
body {
background-color: blue;
height: 100%;
margin: 0;
}
#main {
background-color: red;
min-height: 100%;
}
</style>
</head>
<body>
<div id="main">
<h1>
some text
</h1>
</div>
</body>
</html>
But, for the Firefox (27.0.1) I found:
- show purple line at the top of the page
- and vertical scroll-bar
- if I add some text directly to #main div before h1 element, then page renders as expected.
What I should do to render it correctly in FireFox with text in h1 only ?