JSFiddle - React, Tailwind, and code Playground

by Kirubel Girma

HTML

<div class="botlks">
<div class="bt_ttl">This is cool as shit so check it out<span class="bt_by">Two Beds</span></div>
<div class="bt_info">info.</div>
  
</div>

CSS

*{font-family:arial, sans-serif;}
.botlks{
  width:30.000em;
  height:16.875em;
  background:black;
  color:white;
}
.bt_ttl{
  float:left;
  margin:.5em;
  padding:.4em .6em;
  background:#2f88b3;
}
.bt_by{
  display:block;
  font-size:.7em;
  padding:0em 0em 0em 0em;
  opacity:.9;
}

.bt_info{
  height:3em;
  width:3em;
  background:#2f88b3;
  float:right;
  text-align: center;
}