JSFiddle - React, Tailwind, and code Playground

by Victor

HTML

<div class="hex">
    <img src="http://www.lorempixel.com/400/400/food/4" alt=""/>
</div>

SCSS

.hex {
    width:50%;
    img {
        width:100%
    }
}
.hexOverlay {
    width:100%;
    height:100%;
    background: ...

JavaScript

$('.hex').append('<div class="hexOverlay"></div>');