JSFiddle - React, Tailwind, and code Playground

by Town

HTML

<p class="🐻">
OMG BEAR
</p>

<p class="🐻🐻">
OMG MOAR BEARZ
</p>

<p class="🐻 🐼">
OMG PANDABEAR
</p>

CSS

.🐻 {
  font-weight: bold;
  font-size: 2em;
  color: red;
}

.🐻🐻 {
  font-weight: bold;
  font-size: 2em;
  color: blue;
}

.🐼 {
  color: green;
}