JSFiddle - React, Tailwind, and code Playground
by _jro
HTML
<body>
<div class="bgImageContainer">
</div>
<div class="content"> Some text and stuff here</div>
</body>
CSS
.bgImageContainer{
background-image:url('http://www.whitegadget.com/attachments/pc-wallpapers/16950d1224057972-landscape-wallpaper-blue-river-scenery-wallpapers.jpg');
width:500px;
height:400px;
-webkit-filter: blur(1.5px);
z-index:0;
position:absolute;
}
.content{z-index:10;position:relative;}