我正在使用 tumblr 的代码提取 tumblr 提要,并使用 after: 添加图像作为帖子之间的分隔符。我想将图像居中,但没有运气这样做。由于 tumblr 生成内容,而不是我,我认为我不能使用 span 标签,这似乎是通常的答案。还有其他想法吗?
显示正在使用的提要的页面:lumn.net/index.shtml
CSS:
.tumblr_post:after {
content: url(../img/flower.png);
display: block;
position: relative;
margin-top: 42px;
margin-bottom: 24px;
margin-left: auto;
margin-right: auto;
}