I want create a responsive image in my doc.
<style>
img,.img {
    width: 80%;
    height: auto;
}
</style>
<body>
    <div>
        <img src="img/tools3/2.png" />
    </div>
<body>
Now I try convert img to div:
<body>
        <div>
            <div class="img" style="img/tools3/2.png"></div>
        </div>
<body>
But not showing any images!
If I change height: auto; to height: 100px; it works but it's not responsive else...
Also I add:
box-sizing: border-box;
clear: both;
to .img but not working.
 
     
     
     
    