JSFiddle - React, Tailwind, and code Playground

by MrPolywhirl

HTML

<div>
    I want the text to take up most of the area in the circle.
    I want the text to take up most of the area in the circle.
    I want the text to take up most of the area in the circle.
</div>

CSS

div {
    background-color:#EEE;
    border:solid thick #000;
    width:200px;
    height:200px;
    border-radius:50%;
    padding:0 4%;
    overflow:hidden;
    display:table-cell;
    text-align:center;
    vertical-align:middle;
}