Skip to content Skip to sidebar Skip to footer

Html-doctype Kills Css Declaration "height: 100%;"

I've been working on a layout for a web page and even though I got it running in a minimalistic example it refuses to work when transferred to my sites template. First I thought th

Solution 1:

I'd be setting the following in CSS:

html {
    height: 100%;
}

As height inherits from its parent element.

Post a Comment for "Html-doctype Kills Css Declaration "height: 100%;""