JSFiddle - React, Tailwind, and code Playground

by andreasisaak

HTML

<div id="div1">
	<div id="div2">
		inhalt
	</div>
</div>

CSS

#div1 {
	background-color: red;
}

#div2 {
	width: 200px;
	height: 400px;
	background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 69%, rgba(255,255,255,1) 70%, rgba(255,255,255,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(69%,rgba(255,255,255,0)), color-stop(70%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,0) 69%,rgba(255,255,255,1) 70%,rgba(255,255,255,1) 100%);
background: -o-radial-gradient(center, ellipse cover,  rgba(255,255,255,0) 69%,rgba(255,255,255,1) 70%,rgba(255,255,255,1) 100%);
background: -ms-radial-gradient(center, ellipse cover,  rgba(255,255,255,0) 69%,rgba(255,255,255,1) 70%,rgba(255,255,255,1) 100%);
background: radial-gradient(circle at bottom, rgba(255,255,255,0) 80%,rgba(255,255,255,1) 80%,rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#2989d8',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
}