Merge pull request #879 from nasa/table-headers-809

[Table] Fix headers in firefox
This commit is contained in:
Andrew Henry 2016-05-05 13:29:03 -07:00
commit c6d326bbbc

View File

@ -34,17 +34,28 @@
}
.mct-table {
table-layout: fixed;
th {
box-sizing: border-box;
thead {
display: block;
tr {
display: block;
white-space: nowrap;
th {
display: inline-block;
box-sizing: border-box;
}
}
}
tbody {
tr {
position: absolute;
white-space: nowrap;
display: block;
}
td {
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
display: inline-block;
}
}
}
}