JSFiddle - React, Tailwind, and code Playground

HTML

<div class="ui-widget">
    <img class="ui-widget-overlay" src="http://www.wirify.com/client/images/placeholder.png">
</div>
<div class="ui-widget">
    <img class="ui-widget-overlay-classic" src="http://www.wirify.com/client/images/placeholder.png">
</div>

CSS

.ui-widget {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border: 1px solid red;
}

.ui-widget-overlay { 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-color: #444;
} 


.ui-widget-overlay-classic { 
  position: absolute;
  width: 100%;
  height: 100%;

  background-color: #444;
}