gpt4 book ai didi

html - 如何按基线垂直对齐文本和图像?

转载 作者:太空宇宙 更新时间:2023-11-04 08:35:02 24 4
gpt4 key购买 nike

我有文本和三个图像要按基线垂直对齐。我已经使用 vertical-align 属性通过 text-bottom 对齐元素,但它仍然没有正确对齐。 Vertical align problem

请查看屏幕截图,其中透明黑框可帮助您查看基线问题。

.container {
font-size: 16px;
}

.ayc_cooperation {
margin: 0 5% 0 5%;
font-size: 0.75rem;
font-weight: 300;
color: #535353;
}

.ayc_cooperation:before {
content: "";
display: table;
clear: both;
}

.ayc_cooperation:after {
content: "";
display: block;
height: 6.5rem;
}

.ayc_cooperation_ini_logo {
float: left;
width: 9.6875rem;
height: 4.5rem;
}

.ayc_cooperation_ini_logo img {
width: 100%;
height: 100%;
}

.ayc_co_container {
float: right;
line-height: 8;
height: 4.5rem;
}

.ayc_co_container img {
max-width: 100%;
max-height: 100%;
}

.ayc_co_container img:first-child {
width: 7.5rem;
}

.ayc_co_container img:nth-child(2) {
width: 8rem;
}

.ayc_co_container img {
margin-right: 2.5rem;
}

.ayc_co {
display: inline-block;
margin-left: 2.5rem;
font-size: 0.75rem;
line-height: 14px;
vertical-align: text-bottom;
}

.ayc_de_lebe_ev_img {
width: 8rem;
}

.ayc_de_lebe_ev_img img {
max-width: 100%;
height: auto;
}

.ayc_de_lebe_img {
width: 7.5rem;
}

.ayc_de_lebe_img img {
max-width: 100%;
height: auto;
}

.ayc_gilead_img {
width: 6rem;
}

.ayc_gilead_img img {
max-width: 100%;
height: auto;
}
<div class="container">
<div class="ayc_co_container">
<div class="ayc_co_text ayc_co">
Eine Kooperation von:
</div>
<div class="ayc_de_lebe_img ayc_co">
<img src="http://presse.bist-du-chris.de/wp-content/themes/ayc_press/assets/media/img/deutsche-leberstiftung@3x.png" alt="Deutsche Leberstiftung">
</div>
<div class="ayc_de_lebe_ev_img ayc_co">
<img src="http://presse.bist-du-chris.de/wp-content/themes/ayc_press/assets/media/img/deutsche-leberhilfe-e-v@3x.png" alt="Deutsche Leberhilfe e.V">
</div>
<div class="ayc_gilead_img ayc_co">
<img src="http://presse.bist-du-chris.de/wp-content/themes/ayc_press/assets/media/img/gilead-sciences@3x.png" alt="Gilead Sciences GmbH">
</div>
</div>
</div>

最佳答案

编辑后的答案/新片段:

此特定情况下的问题是您没有对齐文本,而是图像,并且某些图像的底部边框上方有一些空白,这是图像的一部分,尤其是在“Deutsche Leberstiftung”中“图像。所以实际上,您要么必须编辑/剪切图像以获得所需的结果,要么使用 position: relative 并根据它们的 bottom 设置将它们提升或降低一点位,正如我在以下代码片段中所做的那样——可能仍然没有完全对齐,但足以给你一个想法——你可以更改 bottom 值:

.container {
font-size: 16px;
}

.ayc_cooperation {
margin: 0 5% 0 5%;
font-size: 0.75rem;
font-weight: 300;
color: #535353;
}

.ayc_cooperation:before {
content: "";
display: table;
clear: both;
}

.ayc_cooperation:after {
content: "";
display: block;
height: 6.5rem;
}

.ayc_cooperation_ini_logo {
float: left;
width: 9.6875rem;
height: 4.5rem;
}

.ayc_cooperation_ini_logo img {
width: 100%;
height: 100%;
}

.ayc_co_container {
float: right;
line-height: 8;
height: 4.5rem;
}

.ayc_co_container img {
max-width: 100%;
max-height: 100%;
}

.ayc_co_container img:first-child {
width: 7.5rem;
}

.ayc_co_container img:nth-child(2) {
width: 8rem;
}

.ayc_co_container img {
margin-right: 2.5rem;
}

.ayc_co {
display: inline-block;
margin-left: 2.5rem;
font-size: 0.75rem;
line-height: 14px;
vertical-align: text-bottom;
}

.ayc_de_lebe_ev_img {
width: 8rem;
position: relative;
bottom: -2px;
}

.ayc_de_lebe_ev_img img {
max-width: 100%;
height: auto;
}

.ayc_de_lebe_img {
width: 7.5rem;
position: relative;
bottom: -4px;
}
}

.ayc_de_lebe_img img {
max-width: 100%;
height: auto;
}

.ayc_gilead_img {
width: 6rem;
position: relative;
bottom: 0px;
}

.ayc_gilead_img img {
max-width: 100%;
height: auto;
}
<div class="container">
<div class="ayc_co_container">
<div class="ayc_co_text ayc_co">
Eine Kooperation von:
</div>
<div class="ayc_de_lebe_img ayc_co">
<img src="http://presse.bist-du-chris.de/wp-content/themes/ayc_press/assets/media/img/deutsche-leberstiftung@3x.png" alt="Deutsche Leberstiftung">
</div>
<div class="ayc_de_lebe_ev_img ayc_co">
<img src="http://presse.bist-du-chris.de/wp-content/themes/ayc_press/assets/media/img/deutsche-leberhilfe-e-v@3x.png" alt="Deutsche Leberhilfe e.V">
</div>
<div class="ayc_gilead_img ayc_co">
<img src="http://presse.bist-du-chris.de/wp-content/themes/ayc_press/assets/media/img/gilead-sciences@3x.png" alt="Gilead Sciences GmbH">
</div>
</div>
</div>

关于html - 如何按基线垂直对齐文本和图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44528883/

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