mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
34 lines
1.2 KiB
Markdown
34 lines
1.2 KiB
Markdown
---
|
||
layout: default
|
||
title: Wall of browser bugs
|
||
---
|
||
|
||
Bootstrap currently works around several outstanding browser bugs in major browsers to deliver the best cross-browser experience possible. Some bugs, like those listed below, cannot be solved by us.
|
||
|
||
We publicly list browser bugs that are impacting us here, in the hopes of expediting the process of fixing them. For information on Bootstrap's browser compatibility, [see our browser compatibility docs](../getting-started/#support).
|
||
|
||
Also see [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>
|