JSFiddle - React, Tailwind, and code Playground

by zitrusfrisch

HTML

<h1>Headline H1</h1>

CSS

body {
    background: #eee;
    color: #333;
    position: relative;
    height: 100%;
}
h1, h1:after {
    font: bold 120px/1 arial;
    text-align: center;
    display: block;
    position: absolute;
    width: 100%;
    top: 200px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
h1 {
    z-index: 100;
    text-shadow: 3px 3px 0 #eee;
}
h1:after {
    content: "Headline H1";
    color: rgba(0,0,0,.4);
    left: 7px;
    top: 7px;
    z-index: -1;
    text-shadow: none;
}