JSFiddle - React, Tailwind, and code Playground

by Andrew Dunai

HTML

<div class="bg">
    <img src="http://upload.wikimedia.org/wikipedia/commons/6/6b/Las_Vegas_63.jpg" />
</div>

CSS

body {
    background: #225;
    margin: 0;
    padding: 0;
}

.bg {
    position: relative;
}

img {
    width: 100%;
    height: auto;
}

.bg:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(32, 32, 80, 0), #225);
}