<!DOCTYPE html> | |
<style> | |
.block { | |
display: block; | |
width: 75%; | |
height: 75%; | |
border: 5px dotted blue; | |
} | |
.container { | |
border: 1px solid; | |
position: relative; | |
width: 100px; | |
height: 100px; | |
display: inline-block; | |
margin-left: 50px; | |
margin-bottom: 50px; | |
} | |
.abs { | |
width: 50px; | |
height: 50px; | |
position: absolute; | |
background: purple; | |
justify-self: center; | |
} | |
</style> | |
<div class="container"><div class="block"> | |
<div class="abs"></div> | |
</div></div> |