diff options
| author | Mark Otto <[email protected]> | 2013-09-04 17:46:25 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-04 17:46:25 -0700 |
| commit | 44fddf1c3e42bb2a67d9a65c434fa24919526c8b (patch) | |
| tree | a6a3361421ebe48ac438b314829e2d34d3b8a0cb | |
| parent | 1c4bdb053bc526be1719b919b8a41b1248158cd5 (diff) | |
| download | bootstrap-44fddf1c3e42bb2a67d9a65c434fa24919526c8b.tar.xz bootstrap-44fddf1c3e42bb2a67d9a65c434fa24919526c8b.zip | |
fixes #10449: use th with scope in table; add scope to th in thead
| -rw-r--r-- | getting-started.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/getting-started.html b/getting-started.html index 91648b503..4583e2dd9 100644 --- a/getting-started.html +++ b/getting-started.html @@ -671,35 +671,35 @@ bootstrap/ <table class="table table-bordered table-striped"> <thead> <tr> - <th class="col-xs-4">Feature</th> - <th class="col-xs-4">Internet Explorer 8</th> - <th class="col-xs-4">Internet Explorer 9</th> + <th scope="col" class="col-xs-4">Feature</th> + <th scope="col" class="col-xs-4">Internet Explorer 8</th> + <th scope="col" class="col-xs-4">Internet Explorer 9</th> </tr> </thead> <tbody> <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-success"><span class="glyphicon glyphicon-ok"></span> Supported</td> </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-success"><span class="glyphicon glyphicon-ok"></span> Supported</td> </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-success"><span class="glyphicon glyphicon-ok"></span> Supported, with <code>-ms</code> prefix</td> </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> </tr> </tbody> <tbody> <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> </tr> </tbody> |
