Answers for "css photo circle"

CSS
8

css photo circle

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

how to make image a circle css

img{
	clip-path: circle();
}

or

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

Browse Popular Code Answers by Language