JSFiddle - React, Tailwind, and code Playground

by mamounothman

HTML

<div class="wrapper">
<div class="image"></div>
<div class="image1"></div>
<div class="image2"></div>
</div>

CSS

.wrapper {
  width: 500px;
}

.image {
  float: right;
  width: 50%;
  height: 100px;
  background: red;  
  
}

.image1 {
  float: left;
  width: 50%;
  height: 50px;
  background: yellow;
}

.image2 {
  float: left;
  width: 50%;
  height: 50px;
  background: red;
}

JavaScript

f