JSFiddle - React, Tailwind, and code Playground

by jimousse

HTML

<div class="container">
  <button class="btn">
    <div class="content red">Ho</div>
		<div class="content green">Ho</div>
    <div class="content blue">Ho</div>
  </button>
</div>

CSS

.container {
  width: 200px;
  height: 100px;
	border: 1px solid red;
}

.btn {
  width: 100%;
	height: 100%;
  padding: 0;
  background: grey;
  border: 1px solid yellow;
  display: flex;
}

.content {
	height: inherit;
  flex: 1;
  color: white;
}

.red { background: red; }
.green { background: green; }
.blue { background: blue; }