JSFiddle - React, Tailwind, and code Playground

by Gonzalo

HTML

<!DOCTYPE html>
<html>
<head>
    <style>
        .curved-box {
            width: 200px;
            height: 200px;
            background-color: #3498db;
            border-radius: 50%;
            border-radius: 25px 50px 75px 100px;
        }
    </style>
</head>
<body>
    <div class="curved-box"></div>
</body>
</html>