ふっちーのやんのかやんねーのかブログ

ITの技術的なこともそうでないことも。

2020-10-01から1ヶ月間の記事一覧

Reactでstyleタグを使いたい

こんな感じで定義する。 const styleTag = <style>{` .classname { background-color: #f00; } `}</style>; brefore,afterも扱える。 const styleTag = <style>{` .classname:before { content: ""; } .classname:after { content: ""; } `}</style>; 値に変数も利用できる。 const styleTa…