I have a circular image which I want to make responsive, my problem is that it remains the same size. This is what I have
.image-cropper {
width: 215px;
height: 215px;
position: relative;
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.img_circular {
background: #eee;
display: inline;
margin: 0 auto;
height: 100%;
width: auto;
}
<div class="col s2">
<a href="#!user">
<div class="image-cropper">
<img class="img_circular" src="https://media-cdn.tripadvisor.com/media/photo-s/0d/12/d7/3b/img-20160923-wa0089-largejpg.jpg">
</div>
</a>
</div>
I share my jsfiddle
Thank you in advance