Answers for "css how to put photos in a circle"

CSS
10

how to make image a circle css

img{
	clip-path: circle();
}

or

img{
	border-radius: 50%;
}
Posted by: Guest on September-21-2021
12

css photo circle

img{
    clip-path: circle();
}
Posted by: Guest on August-21-2020

Code answers related to "css how to put photos in a circle"

Browse Popular Code Answers by Language