I'm new to this and i created a div. Can any one suggest how to change it to a responsive view. The code is:
<body>
<style>
div {
display: inline-block;
position: relative;
z-index : 1;
}
div img { border: 1px red solid; display: block; }
div + img { position: absolute; z-index: 100; top: 200px; right: 600px; }
</style>
<div>
<div>
<img src="w2.jpg" alt="" style="height: 315px; width: 851px;" />
</div>
<img src="w3.jpg" alt="" style="height: 160px; width: 160px;" />
</div>
</body>