CSS:列表样式图像的定位

发布于 2024-11-09 16:08:37 字数 211 浏览 0 评论 0原文

我有一个列表 list-style-image:url("../images/prices/tick.png");

如何正确定位图像以使图像和文本都显示相同的 y 坐标?没有办法在 url 之后用 url("link") 20px 30px 定义它吗?

我似乎无法在网上找到有关如何再次完成的信息。

I have a list with list-style-image:url("../images/prices/tick.png");

How can I position the image correctly so that the image and the text are on the same y coordinate? Wasn't there a way to define it right after the url with url("link") 20px 30px?

I can't seem to find the info online on how it was done again.

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

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

发布评论

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

评论(4

时光无声 2024-11-16 16:08:37

我认为您正在考虑使用 background-image 而不是 list-style-image..

因此将 list-style 设置为none 并在 li 上放置一个 background-image - 那么是的,您将能够使用 background-position 更准确地定位它> 部分内容:

background: url("link") no-repeat 20px 30px;

I think you're thinking about using a background-image rather than the list-style-image..

so set the list-style to none and put a background-image on the li - then yes you'll be able to position it a bit more accurately using the background-position part of this:

background: url("link") no-repeat 20px 30px;
久光 2024-11-16 16:08:37

您可以尝试这样的操作:

ul {
    list-style:none;
}
li {
    background:url(image.gif) no-repeat 0 0;
    padding-left:16px;
}

因此可以配置背景位置和填充值。

You can try something like this:

ul {
    list-style:none;
}
li {
    background:url(image.gif) no-repeat 0 0;
    padding-left:16px;
}

So background position and padding value could be configured.

╭⌒浅淡时光〆 2024-11-16 16:08:37

根据 Mozilla 的开发人员文档关于列表样式的内容,您无法使用 CSS 定位列表标记。最接近的是 list-style-position,它只允许您将标记定位在列表元素的内部或外部。

如果您想定位图像,则必须编辑图像本身,或使用图像作为背景。

According to Mozilla's Developer Docs on list style, you cannot position the list marker using CSS. The closest is list-style-position, which only lets you position the marker as inside or outside the list elements.

If you want to position the image, you're going to have to edit the image itself, or use the image as a background instead.

蹲墙角沉默 2024-11-16 16:08:37

创建了一个 jsFiddle 供您使用。我调整了背景图像位置,使其看起来更像子弹。

Created a jsFiddle for you to work with. I adjusted the background image position so it would look more like a bullet.

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