diff options
| author | Mark Otto <[email protected]> | 2012-07-19 21:25:24 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-19 21:25:24 -0700 |
| commit | 3c1a0fbda40d06ab0b89d07ad808aa6975c8381d (patch) | |
| tree | dc8221d626ff2f7935adae188a9f28b7da5f0e0d /less/tests/css-tests.html | |
| parent | 89d7ec5290912ddd762f743f450b58b865afc6c3 (diff) | |
| download | bootstrap-3c1a0fbda40d06ab0b89d07ad808aa6975c8381d.tar.xz bootstrap-3c1a0fbda40d06ab0b89d07ad808aa6975c8381d.zip | |
fixes #4103: simpler fix for tfoot in .table-border
Diffstat (limited to 'less/tests/css-tests.html')
| -rw-r--r-- | less/tests/css-tests.html | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html index 527e96616..81d5b1896 100644 --- a/less/tests/css-tests.html +++ b/less/tests/css-tests.html @@ -404,6 +404,13 @@ <td>3</td> </tr> </tbody> + <tfoot> + <tr> + <td>3</td> + <td>6</td> + <td>9</td> + </tr> + </tfoot> </table> <h4>Bordered with thead, with colgroup</h4> <table class="table table-bordered"> @@ -414,9 +421,9 @@ </colgroup> <thead> <tr> - <td>1</td> - <td>2</td> - <td>3</td> + <th>A</th> + <th>B</th> + <th>C</th> </tr> </thead> <tbody> @@ -436,6 +443,13 @@ <td>3</td> </tr> </tbody> + <tfoot> + <tr> + <td>3</td> + <td>6</td> + <td>9</td> + </tr> + </tfoot> </table> </div><!--/span--> <div class="span6"> @@ -466,6 +480,13 @@ <td>3</td> </tr> </tbody> + <tfoot> + <tr> + <td>3</td> + <td>6</td> + <td>9</td> + </tr> + </tfoot> </table> <h4>Bordered with rowspan and colspan</h4> <table class="table table-bordered"> |
