JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<div class="funch">
 
</div> 

<div class="funch02">
 
</div>

CSS

body {
  background: #000000;
}
.funch {
  /* width: 600px; */
  margin: 20px;
  height: 16px;
background: radial-gradient(circle at bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) calc(33% - 1px), rgba(255,255,255,1) 33%, rgba(255,255,255,1) 100%);
background-repeat: round;
background-size: 15px 15px;
border-right: 5px solid #fff;
border-left: 5px solid #fff;
}

.funch02 {
  /* width: 600px; */
  height: 16px;
  margin: 20px;
background: radial-gradient(circle at bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 33%, rgba(255,255,255,1) 33%, rgba(255,255,255,1) 100%);
background-repeat: round;
background-size: 15px 15px;
border-right: 5px solid #fff;
border-left: 5px solid #fff;
}