JSFiddle - React, Tailwind, and code Playground

by matiasfh

HTML

<section class="padre">
  <div class="box"></div>
</section>

CSS

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top:  100px;
}
.padre {
  width: 200px;
  height: 200px;
  border: 3px solid;
}

.box {
  width: 100px;
  height: 100px;
  background: red;
  margin-top: -60px;
  margin-left: -32px;
}