Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | #parent { |
michael@0 | 2 | position: relative; |
michael@0 | 3 | width: 400px; |
michael@0 | 4 | height: 400px; |
michael@0 | 5 | background: red; |
michael@0 | 6 | border: 0 solid black; |
michael@0 | 7 | } |
michael@0 | 8 | #child { |
michael@0 | 9 | position: absolute; |
michael@0 | 10 | left: 300px; |
michael@0 | 11 | top: 200px; |
michael@0 | 12 | right: 20px; |
michael@0 | 13 | bottom: 20px; |
michael@0 | 14 | background: blue; |
michael@0 | 15 | border: 0 solid black; |
michael@0 | 16 | } |
michael@0 | 17 | .floatLeft { |
michael@0 | 18 | width: 50px; |
michael@0 | 19 | height: 10px; |
michael@0 | 20 | background: green; |
michael@0 | 21 | float: left; |
michael@0 | 22 | } |