2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-21 13:24:08 +03:00

Update tables.less

Fixed Table cell sizing with multiple classes by using *= instead of ^=
This commit is contained in:
boomsb
2013-08-19 11:30:38 -05:00
parent b569836126
commit bfe2dc4109
+2 -2
View File
@@ -137,14 +137,14 @@ th {
//
// Reset default table behavior
table col[class^="col-"] {
table col[class*="col-"] {
float: none;
display: table-column;
}
table {
td,
th {
&[class^="col-"] {
&[class*="col-"] {
float: none;
display: table-cell;
}