Answers for "css circle profile picture"

CSS
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

Code answers related to "css circle profile picture"

Browse Popular Code Answers by Language