JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head><title>Test</title></head>

<body>

<div class="wrapper">
   <div class="content"></div>
</div>

</body>
</html>

CSS

.wrapper {
    width: 200px;
    height: 160px;
    -webkit-border-radius: 15px;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);    
}

.content {
    width: 200px;
    height: 160px;
    background: red;
}