JSFiddle - React, Tailwind, and code Playground

by kuyabiye

HTML

<div></div>

CSS

body {
 font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
 padding: 100px;
 background: pink;
}

div {
/* basic */ 
 background-color: #fff;
 margin: 0 auto;
 width: 0;
 padding: 1px 1px 1px 1px;
 text-align: center;
/* border-radius */
 -webkit-border-radius: 20px;
 -moz-border-radius: 20px;
 border-radius: 20px;
/* box-shadow */

 box-shadow: 0 0 0 10px #000;
}