jquery移动缩略图和列表视图中的文本对齐

发布于 2025-01-01 00:39:38 字数 89 浏览 0 评论 0原文

我有一个带有缩略图的 listview 元素。缩略图以特殊方式对齐,文本似乎有额外的顶部和底部间距。有什么想法如何让文本与图像垂直对齐吗?

I have a listview element which has thumbnails. The thumbnails are aligned in a special way and text seems to get extra top and bottom spacing. Any ideas how to get the text to align vertically with the image?

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

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

发布评论

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

评论(3

忆沫 2025-01-08 00:39:38

为了使图像与文本顶部完美对齐,我所采取的方法是:

<div style="padding:10px 10px 10px 0;text-align:center; float:left;">
   <img src="image.jpg" style="max-width:80px;max-height:80px;"/>
</div>

what I have gone for to get the image to align perfectly with the top of the text is:

<div style="padding:10px 10px 10px 0;text-align:center; float:left;">
   <img src="image.jpg" style="max-width:80px;max-height:80px;"/>
</div>
若相惜即相离 2025-01-08 00:39:38

您可以使用 CSS 为列表项内的段落标记创建规则,将 p 元素的 line-height 设置为特定值:

.ui-page .ui-content .ui-listview p {
    line-height    : 65px;
    vertical-align : middle;
}

这是一个演示:< a href="http://jsfiddle.net/7fdSJ/2/" rel="nofollow">http://jsfiddle.net/7fdSJ/2/

如果您想允许多行文本,那么您可以添加这个:

white-space    : normal;

但这有副作用是每行将占据 65px 或您为 line-height 属性硬编码的任何值。

这是一个演示: http://jsfiddle.net/7fdSJ/3/

You can use CSS to create a rule for paragraph tags inside of list items that sets the line-height of the p element to a specific value:

.ui-page .ui-content .ui-listview p {
    line-height    : 65px;
    vertical-align : middle;
}

Here is a demo: http://jsfiddle.net/7fdSJ/2/

If you want to allow multiple lines of text then you can add this:

white-space    : normal;

But this has the side-affect that each line will occupy 65px or whatever value you hard-coded for the line-height property.

Here is a demo: http://jsfiddle.net/7fdSJ/3/

微凉徒眸意 2025-01-08 00:39:38
.ui-page .ui-content .ui-listview p {
    padding-top:10px;
}

这是一个黑客,但它有效。根据您自己的情况自定义适合值 10px。

.ui-page .ui-content .ui-listview p {
    padding-top:10px;
}

Its a hack, but it works. Custom fit the value 10px for your own case.

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