JSFiddle - React, Tailwind, and code Playground

by alexb

HTML

<i>X</i>
<div>
  <p>Don't click me - I'm not a damn button.</p>
</div>

CSS

body {
  font-family: sans-serif;
  margin: 2em;
  text-align: center;
}

i {
  background: black;
  color: white;
  display: inline-block;
  font-size: 2em;
  font-style: normal;
  text-align: center;
  line-height: 64px;
  height: 64px;
  width: 64px;
}

div::before {
  content: "";
  display: block;
  background: black;
  height: 64px;
  width: 4px;
  margin: 0 auto;
}

p {
  border: 4px solid black;
  display: inline-block;
  font-size: 1.25em;
  margin: 0;
  padding: 0.5em 1em;
}