Is there a way to adjust the margin-left property of mydiv-2 to become increasingly negative as the browser window is scaled down horizontally?
#mydiv-1{
background-color:orange;
width:60%;
height:400px;
margin-left: 150px
}
#mydiv-2{
background-color:blue;
margin-left:0vw;
width:30%;
height:150px;
}
<div id="mydiv-1">
<div id="mydiv-2">
</div>
</div>