Faites en sorte que TAG IMG prenne tout l'espace div

/*just add  display:block; OR   vertical-align:bottom; */
/* see the source for details!*/
div {width: 100px;}
img {
  width: 100px;
  height: auto;
  display:block;
  /*OR*/
  vertical-align:bottom;
}
abdelghanyMh