gpt4 book ai didi

html - 在 div 中水平放置文本图像

转载 作者:行者123 更新时间:2023-11-28 16:02:43 25 4
gpt4 key购买 nike

我在 <li> 中有信息像这样:

<li>
<h2>Une équipe locale </h2>
<img src="https://picsum.photos/200" class="image-circle image-center">
<p> Test Test Test </p>
</li>

我的代码显示了这一点

enter image description here

但我正在寻找这个结果:

enter image description here

我试了很多样式都没有这个结果!有人会有想法吗?

最佳答案

li {
display: flex;
}
img {
max-height: 250px;
border-radius : 50%;
}

.wrapper-div {
padding-left: 10px;
}
<ul>
<li>
<img src="https://picsum.photos/200" class="image-circle image-center">
<div class="wrapper-div">
<h2>Une équipe locale</h2>

<p>
Description like this
</p>
</div>
</li>
</ul>

关于html - 在 div 中水平放置文本图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56734071/

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