1147834-bottom-left-ref.html (483B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Overconstrained relative positioning</title> 6 <style> 7 .test { 8 border: 1px solid black; 9 height: 200px; 10 width: 400px; 11 } 12 #inner1 { 13 position: relative; 14 left: 0px; 15 top: 20px; 16 height: 180px; 17 width: 360px; 18 background-color: teal; 19 } 20 </style> 21 </head> 22 <body> 23 <div class="test"> 24 <div id="inner1"></div> 25 </div> 26 </body> 27 </html>