JSFiddle - React, Tailwind, and code Playground
by fekkyDev s
HTML
<div class = "wrapper">
<div class = "main">
</div>
</div>
CSS
html, body {
height: 100%;
width: 100%;
}
.wrapper {
width: 2%;
display: inline-block;
position: relative;
}
.wrapper:after {
padding-top: 100%; /*16:9 ratio*/
display: block;
content: '';
}
.main {
position: absolute;
top: 0; bottom: 0; right: 0; left: 0; /*fill parent*/
border-radius: 100px;
background-color: rgb(0, 162, 232);
/*I wanted it to look good :)*/
font-family: 'Arial', Helvetica, Sans-Serif;
color: white;
}