JSFiddle - React, Tailwind, and code Playground

by Arnaud

HTML

<div id="content">
<span class="test">test texte à styliser</span>

</div>

CSS

#content{
border: 5px solid #ccc; 
background:rgba(43,43,160,0.5);
color:white;
box-shadow: 25px 5px 10px rgba(43,43,160,0.5);
position:absolute;
bottom:0;
width:600px;
}

.test{
  text-shadow: 5px 5px 3px black;
}