This is the entire code:
<!DOCTYPE HTML> <html> <body style="height: 100%; padding: 0; margin: 0;"> <div style="background-color: green; height: 100%; width: 100%"></div> </body> </html>
Nothing appears. But if I remove the first line (the doctype
), all of the page is green as expected.
I have two questions:
div
fill the page without removing that tag?doctype
make it work? Conclusion. With no height value provided for the HTML element, setting the height and/or min-height of the body element to 100% results in no height (before you add content). However, with no width value provided for the HTML element, setting the width of the body element to 100% results in full page width.
100vh = 100% of the height of the viewport.
Syntax: To set a div element height to 100% of the browser window, it can simply use the following property of CSS: height:100vh; Example: HTML.
Height % is based on it's parent (so you have to set every element above the target element to 100%) , there are a few workarounds to this though. For instance you can set it to height: 100vh; This will create the element to be 100% of your window height. Or you can use px instead.
height
property, percentage values & DOCTYPEThe first part of your question asking how to apply a 100% height to your div
has been answered several times by others. Essentially, declare a height on the root element:
html { height: 100%; }
A complete explanation can be found here:
height
property and percentage values.The second part of your question has received much less attention. I'll try to answer that.
Why does removing the
doctype
make [the green background] work?
When you remove the DOCTYPE (document type declaration) the browser switches from standards mode to quirks mode.
In quirks mode, also known as compatibility mode, the browser simulates an old browser so it can parse old web pages – pages authored before the advent of web standards. A browser in quirks mode pretends to be IE4, IE5 and Navigator 4 so it can render old code as the author intended.
Here's how Wikipedia defines quirks mode:
In computing, quirks mode refers to a technique used by some web browsers for the sake of maintaining backward compatibility with web pages designed for older browsers, instead of strictly complying with W3C and IETF standards in standards mode.
Here's MDN's take:
In the old days of the web, pages were typically written in two versions: One for Netscape Navigator, and one for Microsoft Internet Explorer. When the web standards were made at W3C, browsers could not just start using them, as doing so would break most existing sites on the web. Browsers therefore introduced two modes to treat new standards compliant sites differently from old legacy sites.
Now, here's the specific reason why the height: 100%
in your code works in quirks mode but not in standards mode:
In standards mode, if the parent element has a height: auto
(no height defined), then the percentage heights of child elements will also be treated as height: auto
(as per the spec).
This is why the answer to your first question is html { height: 100%; }
.
For height: 100%
to work in your div
, you must set a height
on parent elements (more details).
In quirks mode, however, if the parent element has a height: auto
, then the percentage heights of child elements are measured relative to the viewport.
Here are three references covering this behavior:
Here's what developers need to know in a nutshell:
A browser in quirks mode will render web pages in a way that is unpredictable, unreliable and often undesirable. So always include a DOCTYPE for the document to render in standards mode.
Selecting the right DOCTYPE used to be an ambiguous and somewhat confusing process with many DOCTYPE versions to choose from. But today the process is as simple as ever. Just use:
<!DOCTYPE html>
You mean vertically? divs are block level elements and as such they do fill the parent horizontally by default.
In order for this to work, you need to also give the HTML tag a height of 100%.
html, body { height:100%; }
See here for a working sample:
http://jsfiddle.net/uhg0y9tm/1/
As stated by some of the others here, once you remove the first line (the HTML5 doctype), browsers will render the page in a different way and in that case, it's not necessary to give the HTML tag an explicit height of 100%.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With