将图像与文本对齐

发布于 2024-08-20 07:37:57 字数 327 浏览 6 评论 0原文

我想将 18px 高度的图像与其旁边的文本居中对齐。这是我使用的代码:

<div style="line-height:18px; font-size:12px;">
<img src="somepic.jpg" style="height:18px; vertical-align:middle;">Some text here
</div>

使用该代码,div 容器的渲染高度为 19px 而不是 18px,并且文本不以图像为中心。我尝试过 Safari 4 和 Firefox 3.6。那1px的原因是什么?

谢谢

i want to center align an image of 18px height with text next to it. Here is the code i use:

<div style="line-height:18px; font-size:12px;">
<img src="somepic.jpg" style="height:18px; vertical-align:middle;">Some text here
</div>

With that code, the div container is rendered with a height of 19px instead of 18px and text isn't centered with image. I tried on Safari 4 and Firefox 3.6. What is the reason for that 1 px?

Thanks

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

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

发布评论

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

评论(3

剑心龙吟 2024-08-27 07:37:57
  1. 不要忘记重置样式
    (边距/填充):div、img、span {
    保证金:0;填充:0; border:0 }
  2. 为了使垂直对齐工作,你的
    元素必须内联。
  3. 对齐文本的经典选择
    垂直是给出行高
    等于容器。

例如 :

<div><img src="somepic.jpg" style="height:18px; vertical-align:middle;"><span style="line-height:18px;">Some text here</span></div>
  1. Don't forget to reset styles
    (margin/padding) : div, img, span {
    margin:0; padding:0; border:0 }
  2. For vertical-align to work, your
    elements must me inline.
  3. A classic choice to align text
    vertically is to give a line-height
    equal to container.

For example :

<div><img src="somepic.jpg" style="height:18px; vertical-align:middle;"><span style="line-height:18px;">Some text here</span></div>
自此以后,行同陌路 2024-08-27 07:37:57

也许您在某处有一个边框,需要去掉或设置为零宽度?

Maybe you have a border somewhere in there you need to get rid of or set to zero width?

千紇 2024-08-27 07:37:57

我不完全确定我明白问题所在,但如果只是图像距离您想要的位置有几个像素,那么为什么不相对地定位图像。例如:

<div style="line-height:18px; font-size:12px;">
<img src="somepic.jpg" style="height:18px; vertical-align:middle; position: relative; bottom: 2px;">Some text here
</div>

这会将图像从原来的位置向上移动 2px。

i'm not totally sure I understand what the problem is here but if its just that the image is a few pixels from where you would like it to be, then why don't you just position the image relatively. for example:

<div style="line-height:18px; font-size:12px;">
<img src="somepic.jpg" style="height:18px; vertical-align:middle; position: relative; bottom: 2px;">Some text here
</div>

this will shift the image up by 2px from where it originally was.

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