css - images crop circle

tag img

1
<img src="avatar.png" />
1
2
3
4
5
6
.avatar img {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 50%;
}

tag background

1
<div class="row"></div>
1
2
3
4
5
6
7
.row {
width:300px;
height:300px;
background-image: url( avatar.png );
background-size:cover;
background-position:center;
}

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×