Relative Positioning With Percentage Values In Top Property
jsfiddle The above snippet renders the way I intend it in Chrome (v.20). However in Firefox 11 and IE 9 the 2nd and 3rd content divs do not appear to take into account top and left
Solution 1:
I your case container doesn't have height. You can use this:
body, html {
min-height: 100%;
height: 100%;
}
Post a Comment for "Relative Positioning With Percentage Values In Top Property"