JSFiddle - React, Tailwind, and code Playground

by Kyle

HTML

<div class="strokeme">
    This text should have a stroke in some browsers
</div>

CSS

.strokeme
{
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    
}