📜  使 img 标签占据所有 div 空间 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:41.053000             🧑  作者: Mango

代码示例1
/*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;
}