如何在div中垂直居中图像

时间:2017-09-18 09:28:15

标签: html css image center vertical-alignment

我有一个高度为100vh的div,因此它始终是浏览器屏幕的高度。在这个div的内部,我想放置一个图像并将其垂直于其父级。

高度可变,所以我不能使用固定边距。我目前的标记如下:

HTML

   <div class="textportfolio">

      <h1>This is a title</h1>

      <p class="textbio-small">
      The Roosevelt dime is the current ten-cent piece of the United States.
      </p>

      <img class="portfolio-slides-img" src="https://i.imgur.com/iheO43X.png">

   </div>

CSS:

.textportfolio {
    font-family: "Lora", serif;
    margin: 5%;
    background: #e9cca3;
    height: 100vh;
}

img.portfolio-slides-img {
    max-width: 40%;
    max-height: 40%;
    margin: 0 auto;
    display: block;
    }

有人知道如何根据浏览器高度垂直居中图片吗?

以下是代码段

.textportfolio {
    font-family: "Lora", serif;
    margin: 5%;
    background: #e9cca3;
    height: 100vh
}

img.portfolio-slides-img {
    margin-top: 15%;
    max-width: 40%;
    max-height: 40%;
    margin: 0 auto;
    display: block;
    }
<div class="textportfolio">
  <h1>This is a title</h1>
  
  <p class="textbio-small">
  The Roosevelt dime is the current ten-cent piece of the United States.
  </p>
  
  <img class="portfolio-slides-img" src="https://i.imgur.com/iheO43X.png">
  
  </div>

4 个答案:

答案 0 :(得分:14)

我使用这个css片段:

.selector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

应用于您的样本:https://jsfiddle.net/nhdh8ycr/4/

答案 1 :(得分:3)

CSS中的内容一直是​​一个长期争论的话题,人们会权衡所有因素,并争论最错综复杂的方式。

然后在2014年,出现了一个名为Flexbox的东西,基本上已经过时了。

当容器具有display: flex时,可以使用其属性来对齐其子容器。你可以将它固定在任意一个/两个轴的中间位置。

<div id="container">
 <img src="https://i.imgur.com/i9xpVnQ.jpg" />
</div>
html, body {
  height: 100%; /* required to make body occupy the full viewport by default */
}

#container {
  height: 100%;
  display: flex;
  align-items: center; /* horizontal */
  justify-content: center; /* vertical */
}

img {
  height: 200px;
}

https://jsfiddle.net/5goboeey/1/

它如此普遍地方便我认为它继续在雷达下飞行,因为人们认为它不会那么简单。

答案 2 :(得分:0)

也许这个stackoverflow问题可以帮助你 jsfiddle

代码是 的 HTML

<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=3 />
</div>

<强> CSS

.frame {
height: 25px;      /* equals max image height */
line-height: 25px;
width: 160px;
border: 1px solid red;

text-align: center; margin: 1em 0;
}
img {
background: #3A6F9A;
vertical-align: middle;
max-height: 25px;
max-width: 160px;
}

答案 3 :(得分:0)

试试这个:

.textportfolio {
  font-family: "Lora", serif;
  margin: 5%;
  background: #e9cca3;
  height: 100vh;
  position: relative;
}

img.portfolio-slides-img {
  max-width: 40%;
  max-height: 40%;
  margin: 0 auto;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 35%
}
<div class="textportfolio">
  <h1>This is a title</h1>

  <p class="textbio-small">
    The Roosevelt dime is the current ten-cent piece of the United States.
  </p>

  <img class="portfolio-slides-img" src="https://i.imgur.com/iheO43X.png">

</div>