LoginSignup
1
1

More than 5 years have passed since last update.

参照実態をcontentで使うTIP

Last updated at Posted at 2015-09-02
p:before {
    content: "◀︎";
}

というようなかんじで参照実態をcontentに入れるとする

参照実態をcontentにそのままいれてみる

◀︎は参照実態では◀と書く

p:before {
    content: "◀";
}

文字列がそのまま表示される・・・

TIP

16進数値文字参照 変換スクリプト | WebTecNoteの» 終わりギュメの横にあるテキストフィールドに参照実態ではなく記号を入れて変換。

\0025c0

これをCSSのcontentに入れる

p:before {
    content: "\0025c0";
}

無事記号になりました。

デモ:http://jsdo.it/Ituki/hhF4

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