gpt4 book ai didi

html - div 中动态尺寸图像的垂直居中对齐

转载 作者:行者123 更新时间:2023-11-28 11:20:36 24 4
gpt4 key购买 nike

有一种方法可以通过使用行高在 div 中将图像垂直居中。但在我的例子中,我在 div 中的图像具有动态大小,因此行高方法不起作用。

http://jsfiddle.net/CM4Kx/

.company-logo-wrap {
width: 110px;
margin-top: 10px;
margin-left: 35px;
height: 110px;
border: 1px solid #ddd;
position: absolute;
line-height: 120px;
}

最佳答案

删除position: absoluteline-height: 120px 并添加display: table-cellvertical-align:中间

.company-logo-wrap {
width: 110px;
margin-top: 10px;
margin-left: 35px;
height: 110px;
border: 1px solid #ddd;
display: table-cell;
vertical-align: middle;
position: absolute;
}

http://jsfiddle.net/5WJ3z/

关于html - div 中动态尺寸图像的垂直居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21566884/

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