所以我正在制作这个使用 :before 作为图标的 tumblr 主题,如下所示:
/* Icons */
ol#posts li:before{
content:"";
display:block;
position:absolute;
left:-46px;
width:32px;
height:24px;
background-repeat:no-repeat;
// tried: overflow:visible;
}
li.text:before{
background:url('http://i.imgur.com/z5YtE.png');
}
[...]
但是当我将 li.post 的溢出设置为自动时,图标不会显示。
li.post{
position:relative;
max-height:400px;
overflow-x:auto;
}
是什么原因造成的,我该如何解决?
谢谢 :)