css display table cell requires percentage width
You just need to add 'table-layout: fixed;'
.table {
display: table;
height: 100px;
width: 100%;
table-layout: fixed;
}
http://www.w3schools.com/cssref/pr_tab_table-layout.asp
Note also that vertical-align:top;
is often necessary for correct table cell appearance.
css table-cell, contents have unnecessary top margin