There is a code:

.card .img-card { max-width: 100%; max-height: 100%; position: absolute; } .card { display: block; position: relative; transform-style: preserve-3d; transition: 0.5s; } 
 <div class='card'> <img class='img-carg' src="//picsum.photos/200/300"></img> </div> 

How to align the img-card in the center of the card ?

    1 answer 1

     img { display: block; margin: auto; } 
     <div class='card'> <img class='img-carg' src="//picsum.photos/200"> </div>