JSFiddle - React, Tailwind, and code Playground
by nerdess
HTML
<button>
<i class="test-1"></i>
<i class="test-2"></i>
</button>
CSS
button {
background: yellow;
display:block;
position: relative;
width: 40px;
height: 30px;
padding: 0;
margin: 0;
border: none;
}
button i {
background: red;
display:block;
position: absolute;
width: 40px;
height: 30px;
padding:0;
margin: 0;
top:0;
left:0;
}