CSS:列表样式图像的定位
我有一个列表 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为您正在考虑使用
background-image
而不是list-style-image
..因此将
list-style
设置为none 并在li
上放置一个background-image
- 那么是的,您将能够使用background-position
更准确地定位它> 部分内容:I think you're thinking about using a
background-image
rather than thelist-style-image
..so set the
list-style
to none and put abackground-image
on theli
- then yes you'll be able to position it a bit more accurately using thebackground-position
part of this:您可以尝试这样的操作:
因此可以配置背景位置和填充值。
You can try something like this:
So background position and padding value could be configured.
根据 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.
创建了一个 jsFiddle 供您使用。我调整了背景图像位置,使其看起来更像子弹。
Created a jsFiddle for you to work with. I adjusted the background image position so it would look more like a bullet.