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

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