gpt4 book ai didi

html - 对齐 image1 旁边和 image2 HTML 下方的文本

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

我已经尝试了迄今为止发现的所有可能性,但我无法使文本(和第二张图片)看起来像它应该的样子。

我想我做错了没什么大不了的,但我就是想不通是什么。非常感谢任何帮助!

这是我的 html:

<div class="cf">
<div><img src="https://www....></div>
<div>
<img src="https://www...>
<p>Some text1</p>
<p>
ABC <br />
D EF G
</p>
</div>
</div>

这是我的 .css 文件:

.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}

.cf:after {
clear: both;
}

.cf > div {
display: table-cell;
vertical-align: top;
}

.cf {
*zoom: 1;
}

最佳答案

在左边的图片上,使用float:left,并使用padding-right在图片和文字之间添加一个空隙。

创建一个新的 .clear div,它将清除您的 float 并防止任何其他元素 float 。

.cf {

}
.cf .left-item {
float:left;
padding-right: 10px;
}
p {
margin: 0;
}
.cf .right-item img + p {
padding-bottom: 10px;
}
.clear {
overflow:hidden;
clear:both;
width: 100%;
}
<div class="cf">
<div class="left-item"><img src="https://www.ebner.cc/typo3temp/images/WAPPEN4-3d.png" width="52" height="61" alt=""></div>
<div class="right-item">
<img src="https://www.ebner.cc/fileadmin/redakteur/image/EBNER-Trademark.png" width="63" height="12" alt="EBNER">
<p>Industrieofenbau GmbH</p>
<p>Bearer of the <br />Austrian State Coat of Arm</p>
</div>
<div class="clear"></div>
</div>

关于html - 对齐 image1 旁边和 image2 HTML 下方的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54309972/

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