JSFiddle - React, Tailwind, and code Playground

by Justin Breen

HTML

<div></div>

CSS

div {
    height: 300px;
    background: url('http://i.imgur.com/k8BtMvj.jpg');
    background-size: cover;
    position: relative;
}

div:before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    border-top: 80px solid white;
    border-left: 80px solid rgba(0,0,0,0);
    width: 0;
}