aboutsummaryrefslogtreecommitdiff
path: root/docs/components
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-08-05 17:45:24 -0700
committerMark Otto <[email protected]>2014-08-05 17:45:24 -0700
commitd4e58c755e9db13de666f08e316b98aa945c9fa4 (patch)
tree8cd9daf186f7aeb164b3285573bb94c499a15cb2 /docs/components
parent668dc448a74d5c5122ba0c9e9c91db1aee24a0f7 (diff)
downloadbootstrap-d4e58c755e9db13de666f08e316b98aa945c9fa4.tar.xz
bootstrap-d4e58c755e9db13de666f08e316b98aa945c9fa4.zip
fuck around with responsive reflow table idea
Diffstat (limited to 'docs/components')
-rw-r--r--docs/components/tables.md48
1 files changed, 48 insertions, 0 deletions
diff --git a/docs/components/tables.md b/docs/components/tables.md
index 91d07a252..b545f58fb 100644
--- a/docs/components/tables.md
+++ b/docs/components/tables.md
@@ -542,3 +542,51 @@ Create responsive tables by wrapping any `.table` in `.table-responsive` to make
</table>
</div>
{% endhighlight %}
+
+
+### Reflow
+
+{% example html %}
+<table class="table table-reflow">
+ <thead>
+ <tr>
+ <th>#</th>
+ <th>Table heading</th>
+ <th>Table heading</th>
+ <th>Table heading</th>
+ <th>Table heading</th>
+ <th>Table heading</th>
+ <th>Table heading</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>1</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ </tr>
+ <tr>
+ <td>2</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ </tr>
+ <tr>
+ <td>3</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ <td>Table cell</td>
+ </tr>
+ </tbody>
+</table>
+{% endexample %}