当前位置:  开发笔记 > 前端 > 正文

如何水平居中图像并将其与容器底部对齐?

如何解决《如何水平居中图像并将其与容器底部对齐?》经验,为你挑选了2个好方法。

如何将图像水平居中并同时对齐容器底部?

我已经能够通过自我水平居中.我也能够通过它自己对齐容器的底部.但我无法同时做到这两点.

这是我有的:

.image_block {
    width: 175px;
    height: 175px;
    position: relative;
    margin: 0 auto;
}
.image_block a img {
position: absolute;
bottom: 0;
}

该代码将图像与div的底部对齐.我需要添加/更改什么才能使图像在div内水平居中?图像尺寸在手前是未知的,但是它将是175x175或更小.



1> Owen..:
.image_block    {
    width: 175px;
    height: 175px;
    position: relative;
}

.image_block a  {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px;
}

.image_block img    {
/*  nothing specific  */
}

解释:绝对定位的元素将相对于具有非静态定位的最近父元素.我假设你对你的.image_block显示器感到满意,所以我们可以在那里保留相对位置.

因此,元素将相对于该元素定位.image_block,这将使我们进行底部对齐.那么,我们text-align: center元素,并给它一个100%的宽度,使它的大小.image_block.

所述然后将适当地居中.



2> vdua..:

这也有效(从这个问题中得到了暗示)

.image_block {
  height: 175px;
  width:175px;
  position:relative;
}
.image_block a img{
 margin:auto; /* Required */
 position:absolute; /* Required */
 bottom:0; /* Aligns at the bottom */
 left:0;right:0; /* Aligns horizontal center */
 max-height:100%; /* images bigger than 175 px  */
 max-width:100%;  /* will be shrinked to size */ 
}

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有