LoginSignup
1
1

More than 3 years have passed since last update.

【WordPress】引用元を右寄せにするCSS

Last updated at Posted at 2020-11-21

WordPressで記事を書くときに、引用元が本文と同じく左寄せで見づらかったので、右寄せにしました。
あと引用元の文字を少し小さくしました。

Before
2020-11-21_12h21_36.png
After
2020-11-21_12h20_15.png

前提

テーマ:JIN

引用元を右寄せにするCSS

/* 引用元 */
.wp-block-quote > cite {
    font-size: .8em;
    display: inline-block;
    text-align: right;
    width: 100%;
}

ブログ

ブログやってます。プログラミングについては書いてないけど。
思い考える日常

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1