JSFiddle - React, Tailwind, and code Playground
HTML
<table cellspacing="0" cellpadding="0">
<tr>
<td><button>Einloggen</button></td>
</tr>
</table>
CSS
/* For everybody but IE9 */
button {
min-width: 200px;
}
/* For Internet Explorer 9 */
button::before {
content: "";
display: block;
width: 200px \9;
}
table, tr, td {
border: 1px solid blue;
}