JSFiddle - React, Tailwind, and code Playground
HTML
<div><p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.</p></div>
<svg>
<clipPath id="clip" clipPathUnits="userSpaceOnUse">
<ellipse cx="50%" cy="50%" rx="50%" ry="50%"/>
</clipPath>
<rect width="100%" height="100%"/><!-- fills the viewport with black as reference. -->
</svg>
CSS
div {
width: 100px;
height: 100px;
margin-left: 50px;
background-color: cyan;
border: 50px solid lightgreen;
-webkit-clip-path: url(#clip);
clip-path: url(#clip);
-webkit-transform: translateX(50px);
transform: translateX(50px);
}
div > p {
margin-left: -100px;
}
svg {
width: 100px;
height: 200px;
}
body {
margin: 0;
padding: 0;
}