LoginSignup
1
2

More than 5 years have passed since last update.

css の before after が表示されないとき

Last updated at Posted at 2018-02-11

対象

css (sass) 普段あんまり書かない人

問題

css の疑似要素の before や after を使おうとしたけど表示されない

原因

.section:before {
  content: '';
}

のように content を入れなきゃだめ (height や width を指定してても)

また free-style などで js の中に書く場合は

{
  content: `''`;
}

のようにシングルクォテーションの周りをダブルクォートや バッククォートで囲まないとなので注意する

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