JSFiddle - React, Tailwind, and code Playground
by John Grivas
HTML
<table style="padding-top:5px;" cellpadding="0" cellspacing="0" align="center" width="200" height="34">
<tr>
<td width="81" height="32"><input class="login-reg" type="button" value="Registrácia"></td>
<td width="37"><input class="login-ok" type="button" value=""></td>
<td width="82"><input class="login-reset" type="button" value="Reset hesla"></td>
</tr>
</table>
CSS
.login-ok{
background-image: url("images/ok.png");
background-repeat:no-repeat;
background-color:#00a651;
border-radius:5px;
border:1px solid #000;
height:35px;
width:35px;
}
.login-reg{
background-color: #3a3a3a;
border-top-left-radius:3px;
border-bottom-left-radius:3px;
border:1px solid #000;
color: #fff;
height:25px
padding:0px;
}
.login-reset{
background-color: #3a3a3a;
border-top-right-radius:3px;
border-bottom-right-radius:3px;
border:1px solid #000;
color: #fff;
height:25px
}