JSFiddle - React, Tailwind, and code Playground

by Gregor Z.

HTML

<strong>
    Učimo se <span>HTML</span>
  </strong>


<p>
  <strong>Učimo se <span>CSS</span></strong>
  in
  <strong>
    Javascript.
  </strong>
</p>

CSS

strong span {
  color: red;
}

p strong span {
  color: blue;
}

p strong:first-child {
  text-decoration: underline;
}