JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<div class="stroke">100</div>

CSS

.stroke {
  position: relative;
  font-weight: 900;
  font-size: 70px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #ffffff;
  -webkit-text-stroke: 2px red;
  padding: 0 20px;
  width: min-content;
  /* box-shadow: 10px 0 0 0 red */
}
.stroke:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 4px;
  background: red;
  transform: translateY(25px)
}