JSFiddle - React, Tailwind, and code Playground

by Felipe Kautzmann

HTML

<button>OK</button>
<button class="meu-botao">OK</button>
<button id="identificador-unico-botao">OK</button>

CSS

button {
  width  : 250px;
  height : 220px;
  background-color: gray;
}

.meu-botao {
  width           : 150px;
  height          : 120px;
  background      : url('https://i.ytimg.com/vi/tntOCGkgt98/maxresdefault.jpg') no-repeat;
  background-size : cover;
  font-size       : 32pt;
  color           : orange;
  border          : solid 5px violet;
}

#identificador-unico-botao {
  width  : 250px;
  height : 220px;
  background-color: pink;
}