I have a main container element.
.wrapper{
border:1px solid blue;
position:relative;
top:20%;
left:30%;
height: 300px;
width: 350px;
}
When I adjust the width of the parent container, the child box does not reposition itself accordingly.
.box{
border:1px solid green;
position:absolute;
width:15px;
height:15px;
top: 25%;
}
Any suggestions on how to fix this issue?