JSFiddle - React, Tailwind, and code Playground

by Sachin Patel

HTML

<article>
   <aside>
    <h4>    Impact on market    </h4>
  </aside>
</article>

CSS

.headl {
  color: red;
}
article {
  color: black;
  font-style: normal;
}
article h4 {
  font-style : normal !important;
  color : blue;
}
aside h4 {
  font-style: italic !important;
  color: pink;
}
h4 {
  color: grey;
}