JSFiddle - React, Tailwind, and code Playground

by vikikamath

HTML

<div id="wrapper">
    <div class="bio_image"></div>
    <div class="bio_image"></div>
    <div class="bio_image"></div>
    <div class="bio_image"></div>
</div>

CSS

.bio_image {
    height:250px;
    width:250px;
    background:url('http://www.fillmurray.com/250/250');
    cursor:pointer;
    display:none;
}

.bio_image:first-child {
    display: inline-block;
}