0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-20 17:54:23 +01:00

Color code IE8-9 table with text classes and Glyhpicons instead of table classes

This commit is contained in:
Mark Otto 2013-09-03 18:20:21 -07:00
parent 5dc65894c0
commit e62a04a19b

View File

@ -668,38 +668,36 @@ bootstrap/
<table class="table table-bordered table-striped"> <table class="table table-bordered table-striped">
<thead> <thead>
<tr> <tr>
<th>Feature</th> <th class="col-xs-4">Feature</th>
<th>Internet Explorer 8</th> <th class="col-xs-4">Internet Explorer 8</th>
<th>Internet Explorer 9</th> <th class="col-xs-4">Internet Explorer 9</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td scope="row"><code>border-radius</code></td> <td scope="row"><code>border-radius</code></td>
<td class="danger">No</td> <td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
<td class="success">Yes</td> <td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported</td>
</tr> </tr>
<tr> <tr>
<td scope="row"><code>box-shadow</code></td> <td scope="row"><code>box-shadow</code></td>
<td class="danger">No</td> <td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
<td class="success">Yes</td> <td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported</td>
</tr> </tr>
<tr> <tr>
<td scope="row"><code>transform</code></td> <td scope="row"><code>transform</code></td>
<td class="danger">No</td> <td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
<td class="success">Yes, with <code>-ms</code> vendor prefix</td> <td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported, with <code>-ms</code> prefix</td>
</tr> </tr>
<tr> <tr>
<td scope="row"><code>transition</code></td> <td scope="row"><code>transition</code></td>
<td class="danger">No</td> <td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
<td class="danger">No</td>
</tr> </tr>
</tbody> </tbody>
<tbody> <tbody>
<tr> <tr>
<td scope="row"><code>placeholder</code></td> <td scope="row"><code>placeholder</code></td>
<td class="danger">No</td> <td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
<td class="danger">No</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>