Tags
style
Asked 3 years ago
20 Dec 2020
Views 464

posted

how to create rounded images with css or style ?

i want to create rounded and circular images with CSS. or direct inline css also works
iptracker

iptracker
answered Nov 30 '-1 00:00

itit is very easy
try border-radius with 50%
border-radius: 50%


<img src="img_avatar.png" style=" border-radius: 50%;" alt="Avatar">

Post Answer