gpt4 book ai didi

css - 在div中间显示图像

转载 作者:太空宇宙 更新时间:2023-11-03 23:38:24 25 4
gpt4 key购买 nike

我正在寻找像 Facebook 或 Google Plus 一样创建 ImageView 的方法,但我无法将图像放在 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/

最佳答案

你可以做一些像这样的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

我相信你也可以使用 position:fixed :)

关于css - 在div中间显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23460474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com