JSFiddle - React, Tailwind, and code Playground

by skeller88

HTML

<body>
<div class="container">
        <div class="circle">
            <div class="icon">
            </div>
        </div>
</div>
</body>

CSS

body {
    width: 600px;
    height: 400px;
}
.container {
    position: relative;
    width: 200px;
    height: 400px;
    background-color: grey;
}

.circle {
    position: absolute;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 50%;
    background-color: red;
    overflow: hidden;
}

.icon {
    position: absolute;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;

    background-color: blue;
}