JSFiddle - React, Tailwind, and code Playground

by dipish

HTML

<div class="container">
<div class="menu">menu</div>
<img class="pic" src="http://www.webmastergrade.com/wp-content/uploads/2009/09/Green-Field-WideScreen-Wallpaper.jpg" />
</div>

CSS

.container {
    border: solid 2px black;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    width: 200px;
    background: grey;

}