JSFiddle - React, Tailwind, and code Playground

by dhchow

HTML

<div class="card">
    <span class="rank"></span>
    <span class="suit">&spades;</span>
</div>

CSS

.card {
    width: 3.3em;
    height: 4.6em;
    border: 1px solid #666;
    position: relative;
    background-color: white;
    box-shadow: .2em .2em .5em #333;
    -moz-box-shadow: .2em .2em .5em #333;
    -webkit-box-shadow: .2em .2em .5em #333;
    -webkit-border-radius: .3em;

}