CSS 垂直对齐图像旁边的文本,而第二行不在图像下方?

发布于 2024-12-29 09:42:15 字数 577 浏览 0 评论 0原文

我在格式化这个 WordPress 小部件以使其看起来不错时遇到了困难。

http://healthybodyguru.com/ 这是底部附近的“本月最热门帖子”小部件。

我的第一行文本与顶部垂直对齐,但其他行出现在图像下方。

这是我一直在使用的一些 CSS:

#featured-bottom .popular-posts li {
    list-style-type: none;
    padding-left: 0px;
    margin: 0 0 10px 0;
    position: relative;
    float: left;    
}
.popular-posts img {    
    margin-right: 10px;
    vertical-align: top;
}
.popular-posts .wpp-post-title {
    font-size: 14px;
}

有什么想法吗?我读过类似的问题,但答案似乎对我的具体情况没有帮助。

I'm having a tough time formatting this WordPress widget to look good.

http://healthybodyguru.com/
It's the "Hottest Posts this Month" widget near the bottom.

I've got the 1st line of text vertical-aligned to the top, but the additional lines appear underneath the image.

Here's some CSS I've been playing around with:

#featured-bottom .popular-posts li {
    list-style-type: none;
    padding-left: 0px;
    margin: 0 0 10px 0;
    position: relative;
    float: left;    
}
.popular-posts img {    
    margin-right: 10px;
    vertical-align: top;
}
.popular-posts .wpp-post-title {
    font-size: 14px;
}

Any ideas? I've read through similar questions but the answers didn't seem to help my particular case.

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

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

发布评论

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

评论(1

林空鹿饮溪 2025-01-05 09:42:15

你想要:

.popular-posts img {    
    margin-right: 10px;
    float: left;
}

You want:

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