I want to make an image round (circle) from CSS, but, when I use border-radius: 50%; my image goes ellipsoidal.
I expect to output a responsive circle with that image.
How I can do that?
Thanks!
#image {
  width: 100%;
  border-radius: 50%;
}
<div id="main">
  
  <figure id="img-div">
    <img id="image" src="https://wallpaperaccess.com/full/486693.jpg" alt="A bulb that represent electricity">
  </figure>
  
</div>