1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PR: JISOU | Reactプログラミングコーチング
AIで不安を感じたら!    JISOUメンバー募集中

【styled-components】文字色を当てたコンポーネントでラップしたのに反映されない

1
Posted at

はじめに

問題

  • color: red;のスタイルをコンポーネントでラップしたのに反映されない
<RedWrap>
    <div>
        <p>赤くなってほしい文字</p>
    </div>
</RedWrap>

解決

  • styleを当てた直下の要素にしたら色がついた。
<RedWrap>
    <p>赤くなってほしい文字</p>
</RedWrap>

終わりに

  • どっちかというとCSSの知識

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?