对齐文本中的图像

发布于 2024-11-19 17:42:39 字数 179 浏览 4 评论 0原文

当在文本中放置 时,似乎希望图像的底部位于文本基线处,或者稍高于文本基线,例如:
example

如何才能使图像的中心位于文本的中心?我知道可以用 CSS 来完成,但是我忘了怎么做。

When putting a <img> in text, it seems to want the bottom of the image to be at the text baseline, or a little above, example:
example

How can I have it so the image's center is at the text's center? I know it can be done with CSS, however I forgot how.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

独闯女儿国 2024-11-26 17:42:39

使用vertical-align: middle。例如 http://jsfiddle.net/8QzFV/

Using vertical-align: middle. E.g. http://jsfiddle.net/8QzFV/

怀念你的温柔 2024-11-26 17:42:39

您可以在图像顶部添加填充吗?

#myImage
{
    padding-top:6px;
}

Can you add padding to the top of the image?

#myImage
{
    padding-top:6px;
}
蓝天白云 2024-11-26 17:42:39

只需在其周围包裹一个div并使用css样式vertical-align:middle

just wrapp a div around it and use css style vertical-align:middle

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文