1

how to get rid of extra height of container element? See blue stripe below the first picture in the sample code

div {
  background-color: blue;
  display: inline-block;
}
<div>
  <img src="https://lh5.googleusercontent.com/-8ryRirhRs5o/VEOv3vaXt7I/AAAAAAAAKSU/xBB9lnkn35Y/s144/BGDragonNGlare.jpg">

</div>

<img src="https://lh5.googleusercontent.com/-8ryRirhRs5o/VEOv3vaXt7I/AAAAAAAAKSU/xBB9lnkn35Y/s144/BGDragonNGlare.jpg">
Israel Gav
  • 413
  • 7
  • 18

1 Answers1

2

Add display:block; to the img.

div {
  background-color: blue;
  display: inline-block;
}
div img{
  display: block;  
}
<div>
  <img src="https://lh5.googleusercontent.com/-8ryRirhRs5o/VEOv3vaXt7I/AAAAAAAAKSU/xBB9lnkn35Y/s144/BGDragonNGlare.jpg">

</div>

<img src="https://lh5.googleusercontent.com/-8ryRirhRs5o/VEOv3vaXt7I/AAAAAAAAKSU/xBB9lnkn35Y/s144/BGDragonNGlare.jpg">
Gustaf Gunér
  • 2,272
  • 4
  • 17
  • 23