Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <head> |
michael@0 | 3 | <style> |
michael@0 | 4 | .parent { |
michael@0 | 5 | width: 200px; |
michael@0 | 6 | height: 200px; |
michael@0 | 7 | position: absolute; |
michael@0 | 8 | z-index: 1; |
michael@0 | 9 | background-color: #00ff00; |
michael@0 | 10 | } |
michael@0 | 11 | |
michael@0 | 12 | .intermediate { |
michael@0 | 13 | width: 100px; |
michael@0 | 14 | height: 100px; |
michael@0 | 15 | margin-left:50px; |
michael@0 | 16 | background-color: #ffffff; |
michael@0 | 17 | } |
michael@0 | 18 | |
michael@0 | 19 | .child { |
michael@0 | 20 | width: 100px; |
michael@0 | 21 | height: 100px; |
michael@0 | 22 | margin-left:50px; |
michael@0 | 23 | background-color: #00ffff; |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | .grandchild { |
michael@0 | 27 | width: 50px; |
michael@0 | 28 | height: 100px; |
michael@0 | 29 | margin-left: 50px; |
michael@0 | 30 | background-color: #0000ff; |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | body { |
michael@0 | 34 | margin:0px; |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | </style> |
michael@0 | 38 | </head> |
michael@0 | 39 | <body> |
michael@0 | 40 | <div class="parent"> |
michael@0 | 41 | <div class="intermediate"> |
michael@0 | 42 | <div class="child"> |
michael@0 | 43 | <div class="grandchild"></div> |
michael@0 | 44 | </div> |
michael@0 | 45 | </div> |
michael@0 | 46 | </div> |
michael@0 | 47 | </body> |