JSFiddle - React, Tailwind, and code Playground

by casraf

HTML

<div id="container">
    <div class="photo"></div>
    <div class="photo_tint"></div>
</div>

CSS

#container {
    position: relative;
    width: 500px;
    height: 500px;
    background: blue;
}

.photo {
    position: relative;
    z-index: 0;
    width: 300px;
    height: 100px;
    margin-bottom: 13px;
    border-radius: 5px; 
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: green;
}

.photo_tint {
    position: relative;
    z-index:10000;
    background: red;
    top:-113px;
    width: 300px;
    height: 100px;
}