在div中间显示图像

时间:2014-05-04 19:16:55

标签: css

我正在寻找像Facebook或Google Plus一样创建图像视图的方法,但我无法将图像放在div的中间位置。

这是我的代码:

.overflow {
    background-color: rgba(0,0,0,.9);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.overflow .left-img-box,.overflow .right-content-box {
    display: inline;
    height: 100%;
}

.overflow .left-img-box {
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    text-align: center;
    top: 0;
    vertical-align: middle;
    width: 70%;
}

.overflow .right-content-box {
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
}

.overflow .left-img-box img {
    margin: auto;
    max-height: 100%;
}

您可以看到示例:http://fiddle.jshell.net/N6md8/5/

1 个答案:

答案 0 :(得分:3)

你可以做一些像css这样的事情:

img {
margin:auto;
position:absolute;
top:0;
left:0;
bottom:0;
right:0;
max-height:100%;
max-width:100%;}

参考:http://codepen.io/shshaw/full/gEiDt

我相信你可以选择职位:固定也是:)