JSFiddle - React, Tailwind, and code Playground

by Cristian Marcel

HTML

<div class="circle">
    <div class="as-row">
        <p>hello</p>
    <p>hello</p>
    <p>hello</p>
    <p>hello</p>
    <p>hello</p>
    <p>hello</p>
    <p>hello</p>
    <p>hello</p>
    </div>
    
</div>

CSS

.circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    border: 15px solid green;
    text-align: center;
    width: 350px;
    height: 350px;
}
p {
  flex: 1;
  line-height: .1;
}