JSFiddle - React, Tailwind, and code Playground

HTML

<p class="boring-text">
这些是无聊的文字
</p>
<p>
这是不无聊也不有趣的文字
</p>
<p class="exciting-text">
在MDN上简单贡献
</p>

CSS

.exciting-tex::after{
  content:"<-让人星星粉";
  color:green;
}

.boring-text::after{
  content:"<-无聊";
  color:red;
}