JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<ul>
  <li>1</li>
  <li>2</li>
  <li>3</li>
  <li>4</li>
</ul>

CSS

ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  
}
li {
  height: 20px;
  margin: 20px 0;
  background: red;
}