gpt4 book ai didi

html - 不要与灯箱中的图像垂直对齐

转载 作者:行者123 更新时间:2023-11-28 07:44:29 25 4
gpt4 key购买 nike

我想使用 vertical-align: middle 将 lightbox gallery 中的图像居中,但不能。我哪里做错了?
html:

<div><img src="images/image1.png"></div> 

CSS:

div {
display: table-row;
/* or display: table; -> the result is the same for me */
height: 550px;
width: 100%;
text-align: center;
}
img {
display: table-cell;
max-height: 550px;
margin: 0 auto;
vertical-align: middle;
}

最佳答案

像这样尝试: Demo

div {
display: table-cell;
height: 550px;
width: 100%;
text-align: center;
background: #0f0;
line-height:100%;
vertical-align: middle;
}
img {
display:inline-block;
max-width:500px;
}

关于html - 不要与灯箱中的图像垂直对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30776115/

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