Grid Image Center
Preview
Code
<style>
.container{
display:grid;
place-items:center;
height:160px;
background:#e5e7eb;
}
img{
width:120px;
}
</style>
<div class="container">
<img src="https://via.placeholder.com/120">
</div>
<style>
.container{
display:grid;
place-items:center;
height:160px;
background:#e5e7eb;
}
img{
width:120px;
}
</style>
<div class="container">
<img src="https://via.placeholder.com/120">
</div>