browser-bugs.md 1.2 KB
Newer Older
1
---
2
layout: docs
3
title: Wall of browser bugs
4
group: browser-bugs
5
6
7
8
9
10
---

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).

Mark Otto's avatar
Mark Otto committed
11
12
Also see [jQuery's browser bug workarounds](https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o).

13
<div class="table-responsive">
14
  <table class="bd-browser-bugs table table-bordered table-hover">
15
16
17
18
19
20
21
22
23
    <thead>
      <tr>
        <th>Browser(s)</th>
        <th>Summary of bug</th>
        <th>Upstream bug(s)</th>
        <th>Bootstrap issue(s)</th>
      </tr>
    </thead>
    <tbody>
Mark Otto's avatar
Mark Otto committed
24
      {% for bug in site.data.browser-bugs %}
Mark Otto's avatar
Mark Otto committed
25
      <tr>
Mark Otto's avatar
Mark Otto committed
26
27
28
29
        <td>{{ bug.browser }}</td>
        <td>{{ bug.summary | markdownify | bugify }}</td>
        <td>{{ bug.upstream_bug | bugify }}</td>
        <td>{{ bug.origin | bugify }}</td>
30
      </tr>
Mark Otto's avatar
Mark Otto committed
31
      {% endfor %}
32
33
34
    </tbody>
  </table>
</div>