CSS绝对问题

发布于 2024-11-14 21:59:04 字数 145 浏览 2 评论 0原文

任何人都可以提供有关如何使“新”图标在论坛类别图像上正确显示为绝对的建议吗? 我的网站

我希望它显示在每个类别图像上,但它只显示第一个。

Can anyone offer suggestions as to how I can get the "new" icon to display correctly as absolute over the forum category images? my website

I want it to display over each category image, yet it only does the first one.

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

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

发布评论

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

评论(1

仲春光 2024-11-21 21:59:04

使用 css :

ul.listf li {
   ...
   position: relative;
}

对于新图像:

ul.listf li .newf{
   ...
   position:absolute;
   top:12px;
   left: 143px;
}

重要的部分是将列表项位置设置为相对位置,因此绝对位置将取决于列表的位置

use the css :

ul.listf li {
   ...
   position: relative;
}

and for the new image:

ul.listf li .newf{
   ...
   position:absolute;
   top:12px;
   left: 143px;
}

the important part is setting your list item position to relative so the absolute position will depend on the position of the list

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