I am using \'position relative\' and \'position absolute\' on my master page.
I have a page that use the above master page, And I am trying to use in this page the \'Pos
When one uses position: absolute it is calculated based on the ancestor, not sibling, so your .two and .four divs are positioned relatively to the body, not .one and .two, use this instead:
position: absolute
.two
.four
.one