gpt4 book ai didi

html - float div 的垂直对齐

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

我试图让一个 float 的 div 垂直居中,here is the JSFiddle

.wrapper{
width:250px;
background-color:red;
}

#SmileImg{
height:100px;
width:auto;
}

.textwrapper{
float:right;
}
<div class="wrapper">
<img src="http://img.xcitefun.net/users/2010/02/147370,xcitefun-smile-4.png" id="SmileImg" />
<div class="textwrapper">
<p>Please Smile!</p>
</div>
</div>

我不知道如何将文本“请微笑”垂直居中。

希望有人能帮助我。请耐心等待我不是专家!提前致谢!

最佳答案

float 元素不能垂直对齐,您应该使用行内 block ,或将文本的行高设置为图像高度。另一种方法是使用“display: table-cell”

内联 block 示例:

.wrapper{
width:250px;
background-color:red;
}

#SmileImg{
height:100px;
display: inline-block;
vertical-align: middle;
}

.textwrapper{
display: inline-block;
}
<div class="wrapper">
<img src="http://img.xcitefun.net/users/2010/02/147370,xcitefun-smile-4.png" id="SmileImg" />
<div class="textwrapper">
<p>Please Smile!</p>
</div>
</div>

关于html - float div 的垂直对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30333126/

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