JSFiddle - React, Tailwind, and code Playground

by dima_k

HTML

<p>Outline example with text shadow</p>

CSS

p { 
    margin-top: 50px;
    text-align: center;
    font-size: 3em;
    color:#222;
    text-shadow:0 1px 1px white, 1px 0 1px white,
                -1px 0 1px white, 0 -1px 1px white,
                1px 1px 1px white, -1px 1px 1px white,
                -1px 1px 1px white, -1px -1px 1px white;
}

body{
    background-color: black;
}