gpt4 book ai didi

html - 垂直对齐 div 的内容

转载 作者:太空宇宙 更新时间:2023-11-04 14:33:16 25 4
gpt4 key购买 nike

我想垂直对齐我的 div 的内容。

所以基本上“Hello test”应该垂直放置在 div 的中心。

Demonstration

.parent {
background:blue;
float:left;
width:100%
}

.parent div {
float:left;
width:50%;
}

h1 {
font-size:50px;
margin:0;
padding:0;
}
<div class="parent">

<div>
<h1>hello!</h1>
<p>test</p>
</div>

<div>
<img src="http://placehold.it/250x250" />
</div>

</div>

最佳答案

您可以为此使用表格布局:

.parent {
background:blue;
width:100%;
display: table;
}

.parent div {
display:table-cell;
vertical-align:middle;
width:50%;
}

h1 {
font-size:50px;
margin:0;
padding:0;
}
<div class="parent">

<div>
<h1>hello!</h1>
<p>test</p>
</div>

<div>
<img src="http://placehold.it/250x250" />
</div>

</div>

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

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