Avatar

Cool avatars with different shapes, sizes and with the possibility to group them.


Examples

Use the .rounded-circle modifier class to create a circle avatar.

Image placeholder Image placeholder
<div>
<a href="#!" class="avatar">
    <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
</a>
<a href="#!" class="avatar rounded-circle">
    <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
</a>
</div>
Show Code

Sizing

The most basic list group is an unordered list with list items and the proper classes. Build upon it with the options that follow, or with your own CSS as needed.

Image placeholder Image placeholder Image placeholder Image placeholder Image placeholder
<div>
<a href="#!" class="avatar avatar-xs rounded-circle">
    <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
</a>
<a href="#!" class="avatar avatar-sm rounded-circle">
    <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
</a>
<a href="#!" class="avatar rounded-circle">
    <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
</a>
<a href="#!" class="avatar avatar-lg rounded-circle">
    <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
</a>
<a href="#!" class="avatar avatar-xl rounded-circle">
    <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
</a>
</div>
Show Code

Group

Include multiple avatar items inside an .avatar-group container.

Image placeholder Image placeholder Image placeholder Image placeholder
<div class="avatar-group">
    <a href="#!" class="avatar rounded-circle">
        <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-1.jpg">
    </a>
    <a href="#!" class="avatar rounded-circle">
        <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-2.jpg">
    </a>
    <a href="#!" class="avatar rounded-circle">
        <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-3.jpg">
    </a>
    <a href="#!" class="avatar rounded-circle">
        <img alt="Image placeholder" src="https://demos.creative-tim.com/vue-argon-dashboard-pro-bs4//img/theme/team-4.jpg">
    </a>
</div>
Show Code