LoginSignup
1
2

More than 5 years have passed since last update.

特定タグの前後にスタイルを適用する書き方+改行する書き方

Posted at

内容

下記のようなspanタグの前後にスタイルを適用したい場合の書き方。

<p>あいうえお<span id="target">かきくけこ</span>さしすせそ</p>

記述方法

特定タグ前にスタイルを適用
#target:before{
    content: "\A";
    white-space: pre;
}
特定タグ前にスタイルを適用
#target:before{
    content: "\A";
    white-space: pre;
}

中身に当てているスタイルは改行

改行スタイル
    content: "\A";
    white-space: pre;
1
2
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
2