You need to use table-layout:fixed in order for CSS ellipsis to work on the table cells.
.table {
table-layout:fixed;
}
.table td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
demo: http://bootply.com/9njmoY2CmS
You need to use table-layout:fixed in order for CSS ellipsis to work on the table cells.
.table {
table-layout:fixed;
}
.table td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
demo: http://bootply.com/9njmoY2CmS