JSFiddle - React, Tailwind, and code Playground

HTML

<div>Пробный текст</div>

CSS

div{
width:300px;
height:200px;
font-size:38px;
font-family:verdana;    
color:#fff;
background:orange;
line-height:200px;
text-align:center;
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(orange));
background: -moz-linear-gradient(top, #fff, orange);
background: -o-linear-gradient(top, #fff, orange);        
}