JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

HTML

<div class="card">
  Hello
</div>

CSS

body {
  background-color: black;
}

.card {
  border-left: 5px solid blue;
  background-color: white;
  border-radius: 5px;
}

div {
  width: 300px;
  height: 150px;
}