Parent position: absolute, child position: relative or static : Box Layout « Box Model « HTML / CSS

HTML / CSS
1. Background Attributes
2. Basic Attributes
3. Basic Tags
4. Box Model
5. CSS Attributes and Javascript Style Properties
6. CSS Controls
7. Form Attributes
8. Form Style
9. Form Tags
10. Frame Attributes
11. Frame Tags
12. HTML
13. IE Firefox
14. Images
15. Layout
16. Layout Attributes
17. Link Attributes
18. Link Tags
19. List Attributes
20. List Style
21. List Tags
22. Marquee Attributes
23. Meta Tags
24. Microsoft Attributes
25. Object Attributes
26. Object Tags
27. Reference
28. Style Basics
29. Styles Tags
30. Table Attributes
31. Table Style
32. Table Tags
33. Text
34. Text Attributes
35. Text Tags
36. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
HTML / CSS » Box Model » Box Layout 
Parent position: absolute, child position: relative or static
 


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<style type="text/css" media="Screen">
.grandContainer {
  width: 800px;
  height: 800px;
  background: red;
  position: absolute;
}

#absolute {
  position: relative;
  width: 140px;
  height: auto;
  background: gold;
}

#fixed {
  position: static;
  height: 50px;
  margin-top: 10px;
  width: auto;
  margin-left: 10px;
  background: yellow;
}
</style>
</head>
<body>

<div class="grandContainer">
<span id="absolute" class="border">Absolute</span> 
<p> outside span<span id="fixed" class="border">Fixed</span></p> 
</div> 
</div> 

</body>
</html>

 
Related examples in the same category
1. Horizontally Stretched Static
2. Vertically Stretched Absolute
3. Horizontally Stretched Absolute
4. Indent the left and right sides of a static element
5. Move right and left with margin
6. Indent up and down with margin
7. Parent position: absolute, child position fixed or absolute
8. Parent position: relative, child position fixed or absolute
9. Offset Absolute and Offset Fixed
10. Sized Block Outside to the Left of its parent
11. Sized Block Outside to the Right of its parent
12. Sized Float Outside Left to its parent
13. Sized Float Outside to the Right of its parent
14. Positioned parent and non-position child
15. Sized Absolute
16. Sized relative
17. Shrinkwrapped Absolute
18. Shrinkwrapped Relative
19. Static container and absolute child to top and left
20. Static postioned container and absolute child to the top and right
21. Static positioned container with child to the bottom and left
22. Static positioned container with child to the bottom and right
23. Relative positioned container with absolute positioned child to the top and left
24. Relative positioned container with absolute positioned child to the top and right
25. Relative positioned container with absolute positioned child to the bottom and left
26. Relative positioned container with absolute positioned child to the bottom and right
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.