JSFiddle - React, Tailwind, and code Playground

by klierik

HTML

<div class="image"></div>

CSS

.image {
    width: 200px;
    height: 200px;
    position: relative;
    
    background: #eee;
    bottom: 1px solid  #333;
}
    .image:before,
    .image:after {
        position: absolute;
        width: 16px;
        height: 16px;
    
        content: '';
        
        background: #690000;
    }
    .image:before {
        top: 0;
        left: 0;
    }
    .image:after {
        right: 0;
        bottom: 0;
    }