mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Update tables.less
Fixed Table cell sizing with multiple classes by using *= instead of ^=
This commit is contained in:
parent
b569836126
commit
bfe2dc4109
1 changed files with 2 additions and 2 deletions
|
@ -137,14 +137,14 @@ th {
|
||||||
//
|
//
|
||||||
// Reset default table behavior
|
// Reset default table behavior
|
||||||
|
|
||||||
table col[class^="col-"] {
|
table col[class*="col-"] {
|
||||||
float: none;
|
float: none;
|
||||||
display: table-column;
|
display: table-column;
|
||||||
}
|
}
|
||||||
table {
|
table {
|
||||||
td,
|
td,
|
||||||
th {
|
th {
|
||||||
&[class^="col-"] {
|
&[class*="col-"] {
|
||||||
float: none;
|
float: none;
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue