GitHub 6956★

Have you seen CSS Scan?

The fastest and easiest way to check, copy and edit CSS.

Learn more →

CSS Scan logo

Avatar

HTML

<div class="avatar">
<!-- Avatar image -->
<img class="avatar__image" src="..." />
</div>

CSS

.avatar {
/* Rounded border */
border-radius: 50%;

/* Center the content */
align-items: center;
display: flex;
justify-content: center;

/* Size */
height: 4rem;
width: 4rem;
}

.avatar__image {
/* Size */
height: 50%;
width: 50%;
}
Demo
Follow me on and to get more useful contents.