mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-20 12:21:35 +02:00
fixes #10449: use th with scope in table; add scope to th in thead
This commit is contained in:
@@ -671,35 +671,35 @@ bootstrap/
|
|||||||
<table class="table table-bordered table-striped">
|
<table class="table table-bordered table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="col-xs-4">Feature</th>
|
<th scope="col" class="col-xs-4">Feature</th>
|
||||||
<th class="col-xs-4">Internet Explorer 8</th>
|
<th scope="col" class="col-xs-4">Internet Explorer 8</th>
|
||||||
<th class="col-xs-4">Internet Explorer 9</th>
|
<th scope="col" class="col-xs-4">Internet Explorer 9</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td scope="row"><code>border-radius</code></td>
|
<th scope="row"><code>border-radius</code></th>
|
||||||
<td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
<td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
||||||
<td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported</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>
|
<th scope="row"><code>box-shadow</code></th>
|
||||||
<td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
<td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
||||||
<td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported</td>
|
<td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td scope="row"><code>transform</code></td>
|
<th scope="row"><code>transform</code></th>
|
||||||
<td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
<td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
||||||
<td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported, with <code>-ms</code> 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>
|
<th scope="row"><code>transition</code></th>
|
||||||
<td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
<td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td scope="row"><code>placeholder</code></td>
|
<th scope="row"><code>placeholder</code></th>
|
||||||
<td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
<td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
Reference in New Issue
Block a user