JSFiddle - React, Tailwind, and code Playground
by Ronny
HTML
<h1>Title</h1>
CSS
h1 {font-family: sans-serif; font-size: 48px;}
h1:before {}
JavaScript
$.fn.pseudo = function(type, css){
var $this = $(this);
console.log($this);
};
$('h1').pseudo('before', 'content: "LEGEN - ";');
$('h1').pseudo('after', 'content: " - DARY.";');