14

tumblr のコードを使用して tumblr フィードを取り込み、after: を使用して投稿間の区切りとして画像を追加しています。画像を中央に配置したいのですが、うまくいきませんでした。私ではなくtumblrがコンテンツを生成しているので、スパンタグを使用できないと思います。これが通常の答えのようです。他のアイデアはありますか?

使用中のフィードを表示するページ: 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;
}
4

3 に答える 3

18

これを試して:

.tumblr_post:after {
    content: url("../img/flower.png");
    display: block;
    margin: 42px auto 24px;
    position: relative;
    text-align: center;
    width: 100%;
}
于 2012-05-28T01:23:02.843 に答える