Answers for "profile image circle css"

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
0

css profile picture round

img{
	border-radius: 50%;
}
Posted by: Guest on June-28-2021
0

css profile picture round

.profile-pic {
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;

  object-fit: cover;
}
Posted by: Guest on October-29-2021
1

css create a circle image

clip-path: circle(50.0% at 50% 50%);
Posted by: Guest on March-19-2022
3

rounded immage

border-radius: 15px 50px 30px 5px; (first value applies to top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner)
Posted by: Guest on September-15-2020

Browse Popular Code Answers by Language