1. 图片在父元素中留白的问题

解决:1.给父元素加 font-size:0 ;
2.给图片加 vertical-align:bottom;

  1. <style>
  2. /* 图片在父元素中留白的问题 */
  3. /* 1.给父元素加 font-size:0 */
  4. div{
  5. margin:50px auto;
  6. width: 400px;
  7. border: 1px solid #333;
  8. background-color: gold;
  9. /* font-size: 0; */
  10. }
  11. /* 2.给图片加 vertical-align:bottom */
  12. img{
  13. width: 100%;
  14. vertical-align: bottom;
  15. }
  16. </style>