I have created a JSFiddle in which it shows 6 buttons and text inside each. What I am trying to accomplish is figuring out why on Chrome it looks fine in which all the the buttons will match the size of the largest button(the one with the most text) while the on the other browsers the buttons do not match: http://jsfiddle.net/tXS6w/432/
<table class=buttons>
<tr>
<td><button type="button">Hello there my name is bob and this is a test </button>
<td><button type="button">B</button>
<td><button type="button">C</button>
<td><button type="button">D</button>
<td><button type="button">E</button>
<td><button type="button">F</button>
</table>
css
.buttons {
width: 100%;
table-layout: fixed;
}
.buttons button {
width: 100%;
height: 100%;
white-space: normal;
}