diff options
Diffstat (limited to 'docs/browser-bugs.md')
| -rw-r--r-- | docs/browser-bugs.md | 84 |
1 files changed, 40 insertions, 44 deletions
diff --git a/docs/browser-bugs.md b/docs/browser-bugs.md index bc7356021..f02cb9a37 100644 --- a/docs/browser-bugs.md +++ b/docs/browser-bugs.md @@ -15,28 +15,26 @@ See also: * [WebKit bug 159753: [meta] Issues affecting Bootstrap](https://bugs.webkit.org/show_bug.cgi?id=159753) * [jQuery's browser bug workarounds](https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o) -<div class="table-responsive"> - <table class="bd-browser-bugs table table-bordered table-hover"> - <thead> - <tr> - <th>Browser(s)</th> - <th>Summary of bug</th> - <th>Upstream bug(s)</th> - <th>Bootstrap issue(s)</th> - </tr> - </thead> - <tbody> - {% for bug in site.data.browser-bugs %} - <tr> - <td>{{ bug.browser }}</td> - <td>{{ bug.summary | markdownify | bugify }}</td> - <td>{{ bug.upstream_bug | bugify }}</td> - <td>{{ bug.origin | bugify }}</td> - </tr> - {% endfor %} - </tbody> - </table> -</div> +<table class="bd-browser-bugs table table-bordered table-hover table-responsive"> + <thead> + <tr> + <th>Browser(s)</th> + <th>Summary of bug</th> + <th>Upstream bug(s)</th> + <th>Bootstrap issue(s)</th> + </tr> + </thead> + <tbody> + {% for bug in site.data.browser-bugs %} + <tr> + <td>{{ bug.browser }}</td> + <td>{{ bug.summary | markdownify | bugify }}</td> + <td>{{ bug.upstream_bug | bugify }}</td> + <td>{{ bug.origin | bugify }}</td> + </tr> + {% endfor %} + </tbody> +</table> # Most wanted features @@ -44,25 +42,23 @@ There are several features specified in Web standards which would allow us to ma We publicly list these "most wanted" feature requests here, in the hopes of expediting the process of getting them implemented. -<div class="table-responsive"> - <table class="bd-browser-bugs table table-bordered table-hover"> - <thead> - <tr> - <th>Browser(s)</th> - <th>Summary of feature</th> - <th>Upstream issue(s)</th> - <th>Bootstrap issue(s)</th> - </tr> - </thead> - <tbody> - {% for feat in site.data.browser-features %} - <tr> - <td>{{ feat.browser }}</td> - <td>{{ feat.summary | markdownify | bugify }}</td> - <td>{{ feat.upstream_bug | bugify }}</td> - <td>{{ feat.origin | bugify }}</td> - </tr> - {% endfor %} - </tbody> - </table> -</div> +<table class="bd-browser-bugs table table-bordered table-hover table-responsive"> + <thead> + <tr> + <th>Browser(s)</th> + <th>Summary of feature</th> + <th>Upstream issue(s)</th> + <th>Bootstrap issue(s)</th> + </tr> + </thead> + <tbody> + {% for feat in site.data.browser-features %} + <tr> + <td>{{ feat.browser }}</td> + <td>{{ feat.summary | markdownify | bugify }}</td> + <td>{{ feat.upstream_bug | bugify }}</td> + <td>{{ feat.origin | bugify }}</td> + </tr> + {% endfor %} + </tbody> +</table> |
