图像下方的空白

时间:2019-03-19 17:30:28

标签: html css

我的CSS项目遇到了一些问题。 我试图将图像放在div中,并以某种方式在图像下方放置了空白。

enter image description here

这是我的html代码:

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

#top {
  border: solid;
}

#page-top {
  border: solid;
  width: 1028px;
  background: yellow;
  margin: 0 auto;
}

#page-top img {
  width: 30%;
  border: solid;
  display: inline-block;
}
<div id="top">
  <div id="page-top">
    <img src="https://i.imgur.com/7nqdfTK.png">

  </div>
</div>

1 个答案:

答案 0 :(得分:1)

内联元素的默认垂直对齐方式是基线,它为后代文本元素保留空间。通过将vertical align属性设置为top或middle来解决此问题。

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

#top {
  border: solid;
}

#page-top {
  border: solid;
  width: 1028px;
  background: yellow;
  margin: 0 auto;
}

#page-top img {
  width: 30%;
  border: solid;
  display: inline-block;
  vertical-align: middle;
}
<div id="top">
  <div id="page-top">
    <img src="https://i.imgur.com/7nqdfTK.png">

  </div>
</div>