<!DOCTYPE html> <html> <head> <style> div.outer{ width:300px; height:300px; border:1px solid black; position:relative; } div.inner{ width:120px; height:100px; border:1px solid red; position:absolute; left:90px; top:100px; } </style> </head> <body> <div class="outer"> <div class="inner"></div> </div> </body> </html>
Run
×
Share