gpt4 book ai didi

css - 调整列表样式图像位置?

转载 作者:数据小太阳 更新时间:2023-10-29 09:05:42 24 4
gpt4 key购买 nike

有没有办法调整list-style-image的位置?

当我对列表项使用填充时,图像将保持在其位置并且不会随填充移动...

最佳答案

不是真的。您的填充(可能)应用于列表项,因此只会影响列表项中的实际内容。

结合使用backgroundpadding 样式可以创建看起来相似的内容,例如

li {
background: url(images/bullet.gif) no-repeat left top; /* <-- change `left` & `top` too for extra control */
padding: 3px 0px 3px 10px;
/* reset styles (optional): */
list-style: none;
margin: 0;
}

您可能希望将样式添加到父列表容器 (ul) 以定位您的元素符号列表项,this A List Apart article有很好的入门引用。

关于css - 调整列表样式图像位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1708833/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com