browser-bugs.md 1.18 KB
Newer Older
1
2
3
4
5
6
7
8
9
---
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).

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

12
<div class="table-responsive">
13
  <table class="bd-browser-bugs table table-bordered table-hover">
14
15
16
17
18
19
20
21
22
    <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
23
      {% for bug in site.data.browser-bugs %}
Mark Otto's avatar
Mark Otto committed
24
      <tr>
Mark Otto's avatar
Mark Otto committed
25
26
27
28
        <td>{{ bug.browser }}</td>
        <td>{{ bug.summary | markdownify | bugify }}</td>
        <td>{{ bug.upstream_bug | bugify }}</td>
        <td>{{ bug.origin | bugify }}</td>
29
      </tr>
Mark Otto's avatar
Mark Otto committed
30
      {% endfor %}
31
32
33
    </tbody>
  </table>
</div>