Absolutely positioned element is positioned in context to the dimensions of the relatively positioned container. : position absolute « Layout « HTML / CSS HTML / CSS Layout position absolute Absolutely positioned element is positioned in context to the dimensions of the relatively positioned container.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
" http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
<head>
<title>Relative Positioning</title>
<style rel='stylesheet' type='text/css' >
div {
background: yellow;
border: 1px solid black;
margin: 0 20px;
}
div#relative {
position: relative;
height: 200px;
}
p#bottom-right {
margin: 0;
background: gold;
border: 1px solid crimson;
height: 50px;
width: 200px;
position: absolute;
bottom: 5px;
right: 5px;
}
</style>
</head>
<body>
<div id='relative' >
<p id='bottom-right' >
this is a test. this is a test.
</p>
</div>
</body>
</html>
Related examples in the same category 1. Absolutely positioned Elements are positioned relative to the browser's viewport. 2. position:absolute positions an element from its location in the normal flow or from its nearest positioned ancestor. 3. position: absolute and to the top 100px 4. Use inline style to control the absolute position 5. Absolute position to the bottom 6. use absolute positiont to create a ladder layout 7. Use absolute position to the right to layout the menu bar section 8. position absolute, offset, top, right, bottom, left 9. position absolute: offset right 10. position absolute: offset no width, no height 11. position absolute: offset bottom right 12. position absolute: offset bottom left 13. position absolute offset 14. two block with position: absolute 15. width, height: absolute positioning 16. Absolute positioning of elements 17. Absolute position is in a relative position 18. Absolute Box 19. An absolute element is removed from the normal flow and put in a layer above or below it. 20. left, right, top, and bottom applied to absolute boxes. 21. Vertically Stretched Absolute 22. Remove an element from the normal flow and move it into its own layer with absolute position. 23. absolute positioning 24. absolute positioning for header panel 25. absolute position offset: top right bottom left 26. absolute position: offset right 27. absolute position offset: no-width, no-height 28. absolute position offset 29. absolute position offset: bottom left 30. absolute position offset: bottom right 31. Shrinkwrapped Absolute right offset