【发布时间】:2012-09-04 04:20:19
【问题描述】:
所以基本上我正在尝试在我的网站上添加自定义缩略图。我正在使用 <ol> 并在 css 中对其进行样式设置,例如..
ol {
counter-reset: none;
margin: 0px;
padding: 0px;
list-style-image: url('{image:thumbNail}');
position: relative;
right: 20px;
}
但我想在不影响<ol> 中的其他文本的情况下定位它。我怎样才能做到这一点,所以我不影响文本,而只是定位缩略图?感谢您的帮助。
【问题讨论】:
-
不要使用
list-style-image,在<li>上加上padding-left并将此图像作为background-imageof li>。list-style-image没有那么灵活。
标签: html css positioning thumbnails