JSFiddle - React, Tailwind, and code Playground

by sandro_paganotti

HTML

<div> hello! </div>

CSS

div{
    position: relative;
    text-indent: -9000px;
}
div:after{
    content: 'hi!';
    display: block;
    position: absolute;
    text-indent: 0;
    top:0;
    left:0;
    right:0;
    bottom:0;
}