链接和图像居中

发布于 2024-12-08 11:18:43 字数 180 浏览 0 评论 0原文

有人可以帮助我将图像垂直居中放在文本旁边(两者都应该垂直居中吗?我对此遇到一些麻烦,因为图像的链接与其他行中的文本的高度不同。

这是我的代码 http://jsfiddle.net/k7CVE/

谢谢!

Can someone help me to bring the image vertically centered beside the text (both should be vertically centered? I have some troubles with this, because the link with the image is not on the same height as the text in the other rows.

Here is my code http://jsfiddle.net/k7CVE/

Thank you!

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

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

发布评论

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

评论(1

我还不会笑 2024-12-15 11:18:43

尝试使用 'text-bottom' 而不是 'middle' 作为垂直对齐属性,就像您的情况一样

img.load-icon {
    vertical-align: text-bottom;
    margin: 0;
    padding: 0;
    border: 0px solid black;
    height: 15px;
    width: 15px;
}

Try 'text-bottom' instead of 'middle' for vertical-align property like in your case it would be

img.load-icon {
    vertical-align: text-bottom;
    margin: 0;
    padding: 0;
    border: 0px solid black;
    height: 15px;
    width: 15px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文