I have a problem where my Image wont fill entire height of image container HTML:
<body>
    <div class="card">
        <div class="front-side">
            <img src="img.jpg" alt="Font-Image">
        </div>
    </div>
</body>
CSS:
*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body{
    padding: 30px;
  }
.front-side img{
    width: 100%;
  }
.card{
    background-color: red;
    width: 20%;
  }
Result as you can see "card" background has bigger height than image:

 
     
     
    