- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有文本和三个图像要按基线垂直对齐。我已经使用 vertical-align 属性通过 text-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;
}
.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/
我一直在不同的设备上测试相同的字体(Big John 是字体的名称)。字体的高度或基线在不同设备上不一致。 图片如下: Windows Chrome: Android Chrome: macOS
如何删除出现在 qml 中文本区域下方的行?有可能吗?因为律动音乐有没有台词的东西!那是什么?如果不是,我应该改用什么其他组件? 提前致谢 TextArea{ id:searc
如何删除出现在 qml 中文本区域下方的行?有可能吗?因为律动音乐有没有台词的东西!那是什么?如果不是,我应该改用什么其他组件? 提前致谢 TextArea{ id:searc
这是我遇到的问题的一个简单示例: Foo Bar Baz Bat Plugh XYZZY 除了 TextBox
我目前正在编写一个 Java-FX 程序,其中包含 GridPane 中的 ListView。我想将 ListView 的第一个项目的基线与 ListView 左侧的标签对齐,但 ListView 最
我有一个 iOS 5 时代的应用程序,我需要将其更新为“现代”条款,以便能够向应用程序商店提交更新。我以 iOS 8 为基准,使用自动布局和尺寸分类。 基本 UI 是一个选项卡栏 Controller
在eclipse源码库中编译。我有“尚未设置 API 基线...”错误。 我尝试添加 API Baseline,但我不知道如何制作或添加它。 API Baseline 的用途是什么,如何添加或制作?
我认为我是一种管理我的内容的好方法,但你不太确定这是否可行。 认为 fexbox 可以派上用场...关于我如何划分问题的 3 个简单案例 我想要一个网格,其中的元素背景与行中最大的元素对齐。 我希望所
我正在尝试在 OpenAI 基线中运行 SuperMarioBros 环境。通常这些复古环境与健身房图书馆支持的原生attari 2600不同。 为了使其与基线一起运行,需要安装 retro 附带的第
这个问题在这里已经有了答案: How to control key-frame generation of ffmpeg? (1 个回答) 6年前关闭。 我是 FFMPEG 的新手。我正在尝试对基线配
请参阅此页面> www.tvdiever.nl HTML: CSS: /* @fontface! */ /* all fine in all browsers mac or windows *
有人知道这个 websockets 安全问题的解决方案吗?它在 1.5 基准上运行良好,但在 2.0 上运行不佳。有什么想法可能是问题所在以及 SSL/TLS 从 1.5 到 2.0 发生了什么变化?
在 vagrant 文档中,我没有找到有关在使用“vagrant package”时如何在同一基线框中引用包含的 Vagrantfile 中包含的文件的提示。有人可以帮忙吗? 详细信息: 从头开始为
我有一个实时视频流相机设备,它与我的 Android 手机处于同一网络中。我的安卓版本是 4.1.2。摄像机通过 RTSP 传输视频,其格式为 MP4。地址为:rtsp://192.168.0.102
在 OpenAI 基线代码 DQN 上, tf.stop_gradient 是在构建操作图时对目标网络的 q 值使用的,以防止目标 q 值对损失最小化的贡献。 (第 213 行) 但是,在调用 min
以下是当我向现有代码添加任何新方法时遇到的错误(尤其是当我向接口(interface)或类添加任何方法时) --- animal-sniffer-maven-plugin:1.15:check (d
我是一名优秀的程序员,十分优秀!