HTML中div总是比所包含的img高度高的问题

解决方案(任选一种):
1. div设置 font-size:0;

2. img设置 display:block;

3. div设置 display:flex;

4. img设置 vertical-align: middle;

原因:
  The white space displayed below image elements in HTML is often cause for confusion, but there is a logical explanation: Images are inline elements, and inline elements have descenders.

意思就是:

  img是一种类似text的元素,在结束的时候,会在末尾加上一个空白符,所以就会变高

posted @ 2022-03-04 14:18  向前、向前  阅读(170)  评论(0编辑  收藏  举报