JSFiddle - React, Tailwind, and code Playground

HTML

<h1>見出し</h1>
<div class="hoge">
  <p>テキスト</p>
</div>

CSS

@charset "UTF-8"; /* 文字コードはUTF-8 */

 /* 「h1」の「文字サイズ」を「32pxにする」 */
h1{ font-size: 32px; }

 /* 「class="hoge"」の「背景色」を「skyblueにする」*/
.hoge{ background-color: skyblue; }

 /* 「class="hoge"配下のp」の「文字色」を「白色にする」 */
.hoge p{ color: #fff; }