2014-03-06 06:47:30 +01:00
---
layout: default
title: Wall of browser bugs
slug: browser-bugs
lead: "A list of the browser bugs that Bootstrap is currently grappling with."
2014-11-03 20:17:03 +01:00
fullwidth: true
2014-03-06 06:47:30 +01:00
---
< div class = "bs-docs-section" >
< h1 id = "browser-bugs" class = "page-header" > Browser bugs< / h1 >
2014-03-09 05:53:16 +01:00
< p class = "lead" > 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.< / p >
< p > 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, < a href = "../getting-started/#support" > see our browser compatibility docs< / a > .< / p >
2015-09-27 10:18:51 +02:00
< p > See also:< / p >
< ul >
< li > < a href = "https://code.google.com/p/chromium/issues/detail?id=536263" > Chromium issue 536263: [meta] Issues affecting Bootstrap< / a > < / li >
2015-12-06 11:51:22 +01:00
< li > < a href = "https://bugzilla.mozilla.org/show_bug.cgi?id=1230801" > Mozilla bug 1230801: Fix the issues that affect Bootstrap< / a > < / li >
2015-09-27 10:18:51 +02:00
< li > < a href = "https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o" > jQuery's browser bug workarounds< / a > < / li >
< / ul >
2014-03-06 06:47:30 +01:00
< div class = "table-responsive" >
2014-11-03 20:17:03 +01:00
< table class = "bs-docs-browser-bugs table table-bordered table-hover" >
2014-03-06 06:47:30 +01:00
< thead >
< tr >
< th > Browser(s)< / th >
< th > Summary of bug< / th >
< th > Upstream bug(s)< / th >
2014-03-09 05:53:16 +01:00
< th > Bootstrap issue(s)< / th >
2014-03-06 06:47:30 +01:00
< / tr >
< / thead >
< tbody >
2014-11-03 20:17:03 +01:00
{% for bug in site.data.browser-bugs %}
2014-07-23 19:23:23 +02:00
< tr >
2014-11-03 20:17:03 +01:00
< td > {{ bug.browser }}< / td >
< td > {{ bug.summary | markdownify | bugify }}< / td >
< td > {{ bug.upstream_bug | bugify }}< / td >
< td > {{ bug.origin | bugify }}< / td >
2014-11-03 18:17:35 +01:00
< / tr >
2014-11-03 20:17:03 +01:00
{% endfor %}
2014-03-06 06:47:30 +01:00
< / tbody >
< / table >
< / div >
< / div >