How to crop a landscape picture into a circle

0
Hi,   When I upload a landscape picture, the picture turns out oval, but this needs to be a circle. Does anyone know how I can fix this?   Class: img-circle Width unit: 200 Height unit: Auto   Thanks!  
asked
2 answers
3

With CSS: https://www.w3schools.com/howto/howto_css_rounded_images.asp

Regards,

Ronald

[EDIT] did you use border-radius ?

answered
1

with CSS:
use this border-radius property to add rounded corners to an image
Eg:
border-radius: 50%;

hope this helps!
 

answered