search

Home  >  Q&A  >  body text

Safari does not support CSS for circular avatars

My blog is using gatsby React template, but when I open it on Safari (iPhone or Mac), the avatar image is not round. Simple code blog

This is the style I use for my avatar

.bio-avatar {
  margin-right: var(--spacing-4);
  margin-bottom: var(--spacing-0);
  min-width: 50px;
  border-radius: 100%;
 }

P粉779565855P粉779565855284 days ago465

reply all(1)I'll reply

  • P粉289775043

    P粉2897750432024-02-18 12:41:35

    You should change your CSS code with this. The problem is with the border-radius value.

    .bio-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
    }

    reply
    0
  • Cancelreply