JSFiddle - React, Tailwind, and code Playground

by justforlxz

HTML

<body>
<div>
Text
</div>
</body>

CSS

div::before {
  content: "This is before Text, ";
}

div::after {
  content: " ,This is after Text.";
}