JSFiddle - React, Tailwind, and code Playground
by ckissi
HTML
<div class="avatar-container">
<img src="https://randomuser.me/api/portraits/women/10.jpg" class="avatar">
<div class="mark"></div>
</div>
CSS
.avatar-container {
position: relative;
display: inline-block;
}
.avatar {
width: 64px;
height: 64px;
border-radius: 50%;
border: #eee 3px solid;
}
.mark {
position: absolute;
background-color: #ff0000;
border-radius: 50%;
width: 12px;
height: 12px;
border: #fff 3px solid;
bottom: 3px;
right: 0px;
}