2014-06-26 18:46:59 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
<!-- Meta, title, CSS, favicons, etc. -->
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< meta name = "description" content = "Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development." >
< meta name = "keywords" content = "HTML, CSS, JS, JavaScript, framework, bootstrap, front-end, frontend, web development" >
< meta name = "author" content = "Mark Otto, Jacob Thornton, and Bootstrap contributors" >
< title >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
Wall of browser bugs · Bootstrap
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< / title >
<!-- Bootstrap core CSS -->
2014-10-29 20:17:44 +01:00
2015-06-16 22:13:14 +02:00
< link href = "../dist/css/bootstrap.min.css" rel = "stylesheet" >
2014-10-29 20:17:44 +01:00
2014-06-26 18:46:59 +02:00
<!-- Documentation extras -->
2014-10-29 20:17:44 +01:00
2015-06-16 22:13:14 +02:00
< link href = "../assets/css/docs.min.css" rel = "stylesheet" >
2014-10-29 20:17:44 +01:00
2014-06-26 18:46:59 +02:00
<!-- [if lt IE 9]><script src="../assets/js/ie8 - responsive - file - warning.js"></script><![endif] -->
< script src = "../assets/js/ie-emulation-modes-warning.js" > < / script >
2014-10-29 20:17:44 +01:00
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
2014-06-26 18:46:59 +02:00
<!-- [if lt IE 9]>
< script src = "https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js" > < / script >
< script src = "https://oss.maxcdn.com/respond/1.4.2/respond.min.js" > < / script >
<![endif]-->
<!-- Favicons -->
2014-10-29 20:17:44 +01:00
< link rel = "apple-touch-icon" href = "/apple-touch-icon.png" >
2014-06-26 18:46:59 +02:00
< link rel = "icon" href = "/favicon.ico" >
< script >
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-146052-10', 'getbootstrap.com');
ga('send', 'pageview');
< / script >
< / head >
< body >
2015-01-19 18:10:41 +01:00
< a id = "skippy" class = "sr-only sr-only-focusable" href = "#content" > < div class = "container" > < span class = "skiplink-text" > Skip to main content< / span > < / div > < / a >
2014-06-26 18:46:59 +02:00
2015-08-19 08:18:20 +02:00
< a href = "http://blog.getbootstrap.com/2015/08/19/bootstrap-4-alpha/" class = "v4-tease" > Aww yeah, Bootstrap 4 is coming!< / a >
2014-06-26 18:46:59 +02:00
<!-- Docs master nav -->
< header class = "navbar navbar-static-top bs-docs-nav" id = "top" role = "banner" >
< div class = "container" >
< div class = "navbar-header" >
2015-06-16 18:50:35 +02:00
< button class = "navbar-toggle collapsed" type = "button" data-toggle = "collapse" data-target = "#bs-navbar" aria-controls = "bs-navbar" aria-expanded = "false" >
2014-06-26 18:46:59 +02:00
< span class = "sr-only" > Toggle navigation< / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< / button >
< a href = "../" class = "navbar-brand" > Bootstrap< / a >
< / div >
2015-06-16 18:50:35 +02:00
< nav id = "bs-navbar" class = "collapse navbar-collapse" >
2014-06-26 18:46:59 +02:00
< ul class = "nav navbar-nav" >
< li >
2014-09-22 19:24:07 +02:00
< a href = "../getting-started/" > Getting started< / a >
2014-06-26 18:46:59 +02:00
< / li >
< li >
2014-09-22 19:24:07 +02:00
< a href = "../css/" > CSS< / a >
2014-06-26 18:46:59 +02:00
< / li >
< li >
2014-09-22 19:24:07 +02:00
< a href = "../components/" > Components< / a >
2014-06-26 18:46:59 +02:00
< / li >
< li >
2014-09-22 19:24:07 +02:00
< a href = "../javascript/" > JavaScript< / a >
2014-06-26 18:46:59 +02:00
< / li >
< li >
2014-09-22 19:24:07 +02:00
< a href = "../customize/" > Customize< / a >
2014-06-26 18:46:59 +02:00
< / li >
< / ul >
< ul class = "nav navbar-nav navbar-right" >
2015-08-19 08:18:20 +02:00
< li > < a href = "http://themes.getbootstrap.com" onclick = "ga('send', 'event', 'Navbar', 'Community links', 'Themes');" > Themes< / a > < / li >
2014-06-26 18:46:59 +02:00
< li > < a href = "http://expo.getbootstrap.com" onclick = "ga('send', 'event', 'Navbar', 'Community links', 'Expo');" > Expo< / a > < / li >
< li > < a href = "http://blog.getbootstrap.com" onclick = "ga('send', 'event', 'Navbar', 'Community links', 'Blog');" > Blog< / a > < / li >
< / ul >
< / nav >
< / div >
< / header >
<!-- Docs page layout -->
2015-02-23 07:13:27 +01:00
< div class = "bs-docs-header" id = "content" tabindex = "-1" >
2014-06-26 18:46:59 +02:00
< div class = "container" >
< h1 > Wall of browser bugs< / h1 >
< p > A list of the browser bugs that Bootstrap is currently grappling with.< / p >
< div id = "carbonads-container" > < div class = "carbonad" > < div id = "azcarbon" > < / div > < script > var z = document . createElement ( "script" ) ; z . async = true ; z . src = "http://engine.carbonads.com/z/32341/azcarbon_2_1_0_HORIZ" ; var s = document . getElementsByTagName ( "script" ) [ 0 ] ; s . parentNode . insertBefore ( z , s ) ; < / script > < / div > < / div >
< / div >
< / div >
< div class = "container bs-docs-container" >
< div class = "row" >
2014-11-12 18:15:07 +01:00
< div class = "col-md-12" role = "main" >
2014-06-26 18:46:59 +02:00
< div class = "bs-docs-section" >
< h1 id = "browser-bugs" class = "page-header" > Browser bugs< / h1 >
< 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-10-01 20:04:49 +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 >
< li > < a href = "https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o" > jQuery's browser bug workarounds< / a > < / li >
< / ul >
2014-06-26 18:46:59 +02:00
< div class = "table-responsive" >
2014-11-12 18:15:07 +01:00
< table class = "bs-docs-browser-bugs table table-bordered table-hover" >
2014-06-26 18:46:59 +02:00
< thead >
< tr >
< th > Browser(s)< / th >
< th > Summary of bug< / th >
< th > Upstream bug(s)< / th >
< th > Bootstrap issue(s)< / th >
< / tr >
< / thead >
< tbody >
2015-10-01 20:04:49 +02:00
2014-09-22 19:24:07 +02:00
< tr >
2015-10-01 20:04:49 +02:00
< td > Internet Explorer 11 & Microsoft Edge
2014-11-12 18:15:07 +01:00
< / td >
< td > < p > Hovered element still remains in < code > :hover< / code > state after scrolling away.< / p >
< / td >
< td > < a href = "https://connect.microsoft.com/IE/feedback/details/926665" > IE bug #926665< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/14211" > #14211< / a >
< / td >
2014-09-22 19:24:07 +02:00
< / tr >
2015-10-01 20:04:49 +02:00
2014-09-22 19:24:07 +02:00
< tr >
2015-10-01 20:04:49 +02:00
< td > Internet Explorer 11 & Microsoft Edge
2014-11-12 18:15:07 +01:00
< / td >
< td > < p > When hovering over a < code > < select> < / code > menu item, the cursor for the element underneath the menu is displayed.< / p >
< / td >
< td > < a href = "https://connect.microsoft.com/IE/feedback/details/963961" > IE bug #963961< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/14528" > #14528< / a >
< / td >
2014-09-22 19:24:07 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2015-07-18 08:25:47 +02:00
< tr >
< td > Internet Explorer 11 & Microsoft Edge
< / td >
< td > < p > CSS < code > border-radius< / code > sometimes causes lines of bleed-through of the < code > background-color< / code > of the parent element.< / p >
< / td >
< td > < a href = "https://connect.microsoft.com/IE/feedback/details/1463734" > IE bug #1463734< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16671" > #16671< / a >
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Firefox
< / td >
< td > < p > < code > .table-bordered< / code > with an empty < code > < tbody> < / code > is missing borders.< / p >
< / td >
< td > < a href = "https://bugzilla.mozilla.org/show_bug.cgi?id=1023761" > Mozilla bug #1023761< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/13453" > #13453< / a >
< / td >
2014-06-26 18:46:59 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Firefox
< / td >
< td > < p > < code > max-width: 100%;< / code > doesn’ t work inside tables.< / p >
< / td >
< td > < a href = "https://bugzilla.mozilla.org/show_bug.cgi?id=975632" > Mozilla bug #975632< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/10690" > #10690< / a >
< / td >
2014-06-26 18:46:59 +02:00
< / tr >
2015-10-01 20:04:49 +02:00
2014-09-22 19:24:07 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Firefox
< / td >
< td > < p > Button elements with < code > width: 100%< / code > become cropped in long tables.< / p >
< / td >
< td > < a href = "https://bugzilla.mozilla.org/show_bug.cgi?id=1060131" > Mozilla bug #1060131< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/14320" > #14320< / a >
< / td >
2014-09-22 19:24:07 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2014-09-22 19:24:07 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Firefox
< / td >
< td > < p > If the disabled state of a form control is changed via JavaScript, the normal state doesn’ t return after refreshing the page.< / p >
< / td >
< td > < a href = "https://bugzilla.mozilla.org/show_bug.cgi?id=654072" > Mozilla bug #654072< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/793" > #793< / a >
< / td >
2014-06-26 18:46:59 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Chrome (OS X)
< / td >
< td > < p > Clicking above < code > < input type="number"> < / code > increment button flashes the decrement button.< / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=419108" > Chromium issue #419108< / a >
< / td >
< td > Offshoot of < a href = "https://github.com/twbs/bootstrap/issues/8350" > #8350< / a > & < a href = "https://code.google.com/p/chromium/issues/detail?id=337668" > Chromium issue #337668< / a >
< / td >
2014-06-26 18:46:59 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2015-02-23 07:13:27 +01:00
< tr >
< td > Chrome (OS X)
< / td >
< td > < p > Caps Lock indicator not shown in < code > < input type="password"> < / code > with < code > display: block< / code > < / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=460200" > Chromium issue #460200< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/15832" > #15832< / a >
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2015-04-12 22:33:22 +02:00
< tr >
< td > Chrome
< / td >
< td > < p > Focus ring of image map within a modal is displayed in the wrong location.< / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=475128" > Chromium issue #475128< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16180" > #16180< / a >
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Chrome
< / td >
< td > < p > Incorrect viewport size used for media queries when printing.< / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=273306" > Chromium issue #273306< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/12078" > #12078< / a >
< / td >
2014-06-26 18:46:59 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Chrome
< / td >
2014-12-20 02:34:43 +01:00
< td > < p > CSS infinite linear animation with alpha transparency leaks memory.< / p >
2014-11-12 18:15:07 +01:00
< / td >
2014-12-20 02:34:43 +01:00
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=429375" > Chromium issue #429375< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-12-20 02:34:43 +01:00
< td > < a href = "https://github.com/twbs/bootstrap/issues/14409" > #14409< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-06-26 18:46:59 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2015-03-16 16:57:29 +01:00
< tr >
< td > Chrome
< / td >
< td > < p > < code > :focus< / code > < code > outline< / code > style causes cursor to not be displayed when toggling a < code > readonly< / code > < code > < input> < / code > to read-write.< / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=465274" > Chromium issue #465274< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16022" > #16022< / a >
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2015-06-16 18:50:35 +02:00
< tr >
< td > Chrome
< / td >
< td > < p > < code > width: 1%< / code > on nested table cell causes its table to hog horizontal space.< / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=427994" > Chromium issue #427994< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16372" > #16372< / a >
< / td >
< / tr >
2015-10-13 05:40:11 +02:00
< tr >
< td > Chrome
< / td >
< td > < p > < code > table-cell< / code > borders not overlapping despite < code > margin-right: -1px< / code > < / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=534750" > Chromium issue #534750< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/17438" > #17438< / a > , < a href = "https://github.com/twbs/bootstrap/issues/14237" > #14237< / a >
< / td >
< / tr >
2015-01-19 18:10:41 +01:00
< tr >
< td > Chrome (Windows & Linux)
< / td >
< td > < p > Animation glitch when returning to inactive tab after animations occurred while tab was hidden.< / p >
< / td >
< td > < a href = "https://code.google.com/p/chromium/issues/detail?id=449180" > Chromium issue #449180< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/15298" > #15298< / a >
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2015-06-16 18:50:35 +02:00
< tr >
< td > Safari
< / td >
< td > < p > < code > width: 1%< / code > on nested table cell causes its table to hog horizontal space.< / p >
< / td >
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=144696" > WebKit bug #144696< / a > , < a href = "https://openradar.appspot.com/20839572" > Apple Safari Radar #20839572< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16372" > #16372< / a >
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2015-08-01 07:53:17 +02:00
< tr >
< td > Safari
< / td >
< td > < p > Incorrect placement of < code > position: fixed< / code > element when it’ s a child of a < code > position: relative; left: X%;< / code > element.< / p >
< / td >
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=147284" > WebKit bug #147284< / a > , < a href = "https://openradar.appspot.com/21993128" > Apple Safari Radar #21993128< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16814" > #16814< / a >
< / td >
< / tr >
2015-10-13 05:40:11 +02:00
2014-11-01 01:15:23 +01:00
< tr >
2015-10-13 05:40:11 +02:00
< td > Safari
2014-11-12 18:15:07 +01:00
< / td >
2015-10-13 05:40:11 +02:00
< td > < p > Unexplained < code > 1px< / code > horizontal space between < code > display: table-cell< / code > elements< / p >
2014-11-12 18:15:07 +01:00
< / td >
2015-10-13 05:40:11 +02:00
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=149935" > WebKit bug #149935< / a >
2014-11-12 18:15:07 +01:00
< / td >
2015-10-13 05:40:11 +02:00
< td > < a href = "https://github.com/twbs/bootstrap/issues/17438" > #17438< / a > , < a href = "https://github.com/twbs/bootstrap/issues/14237" > #14237< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-11-01 01:15:23 +01:00
< / tr >
2015-10-13 05:40:11 +02:00
2014-10-01 18:42:02 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Safari (OS X)
< / td >
2015-10-13 05:40:11 +02:00
< td > < p > Scrollbar clipped in < code > select[multiple]< / code > with padding.< / p >
2014-11-12 18:15:07 +01:00
< / td >
2015-10-13 05:40:11 +02:00
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=128489" > WebKit bug #128489< / a > , < a href = "https://openradar.appspot.com/19208483" > Apple Safari Radar #19208483< / a >
2014-11-12 18:15:07 +01:00
< / td >
2015-10-13 05:40:11 +02:00
< td > < a href = "https://github.com/twbs/bootstrap/issues/12536" > #12536< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-10-01 18:42:02 +02:00
< / tr >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Safari (OS X)
< / td >
2015-10-13 05:40:11 +02:00
< td > < p > Weird button behavior with some < code > < input type="number"> < / code > elements.< / p >
2014-11-12 18:15:07 +01:00
< / td >
2015-10-13 05:40:11 +02:00
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=137269" > WebKit bug #137269< / a > , < a href = "https://openradar.appspot.com/18834768" > Apple Safari Radar #18834768< / a >
2014-11-12 18:15:07 +01:00
< / td >
2015-10-13 05:40:11 +02:00
< td > < a href = "https://github.com/twbs/bootstrap/issues/8350" > #8350< / a > , < a href = "https://github.com/necolas/normalize.css/issues/283" > Normalize #283< / a > , < a href = "https://code.google.com/p/chromium/issues/detail?id=337668" > Chromium issue #337668< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-06-26 18:46:59 +02:00
< / tr >
2015-10-13 05:40:11 +02:00
2014-10-29 20:17:44 +01:00
< tr >
2014-12-20 02:34:43 +01:00
< td > Safari (OS X)
2014-11-12 18:15:07 +01:00
< / td >
2014-12-20 02:34:43 +01:00
< td > < p > Small font size when printing webpage with fixed-width < code > .container< / code > .< / p >
2014-11-12 18:15:07 +01:00
< / td >
2015-01-11 03:25:18 +01:00
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=138192" > WebKit bug #138192< / a > , < a href = "https://openradar.appspot.com/19435018" > Apple Safari Radar #19435018< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-12-20 02:34:43 +01:00
< td > < a href = "https://github.com/twbs/bootstrap/issues/14868" > #14868< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-10-29 20:17:44 +01:00
< / tr >
2015-08-19 08:18:20 +02:00
2015-04-12 22:33:22 +02:00
< tr >
< td > Safari (OS X)
< / td >
< td > < p > Focus ring of image map within a modal is displayed in the wrong location.< / p >
< / td >
2015-08-01 07:53:17 +02:00
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=143527" > WebKit bug #143527< / a > , < a href = "https://openradar.appspot.com/21908735" > Apple Safari Radar #21908735< / a >
2015-04-12 22:33:22 +02:00
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16180" > #16180< / a >
< / td >
< / tr >
2015-10-13 05:40:11 +02:00
< tr >
< td > Safari (iPad)
< / td >
< td > < p > < code > < select> < / code > menu on iPad causes shifting of hit-testing areas< / p >
< / td >
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=150079" > WebKit bug #150079< / a > , < a href = "https://openradar.appspot.com/23082521" > Apple Safari Radar #23082521< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/14975" > #14975< / a >
< / td >
< / tr >
2014-12-20 02:34:43 +01:00
< tr >
< td > Safari (iOS)
< / td >
< td > < p > < code > transform: translate3d(0,0,0);< / code > rendering bug.< / p >
< / td >
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=138162" > WebKit bug #138162< / a > , < a href = "https://openradar.appspot.com/18804973" > Apple Safari Radar #18804973< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/14603" > #14603< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-10-30 02:42:45 +01:00
< / tr >
2015-08-19 08:18:20 +02:00
2014-10-30 02:42:45 +01:00
< tr >
2014-11-12 18:15:07 +01:00
< td > Safari (iOS)
< / td >
< td > < p > Text input’ s cursor doesn’ t move while scrolling the page.< / p >
< / td >
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=138201" > WebKit bug #138201< / a > , < a href = "https://openradar.appspot.com/18819624" > Apple Safari Radar #18819624< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/14708" > #14708< / a >
< / td >
2014-10-30 02:42:45 +01:00
< / tr >
2015-10-01 20:04:49 +02:00
< tr >
< td > Safari (iOS)
< / td >
< td > < p > Can’ t move cursor to start of text after entering long string of text into < code > < input type="text"> < / code > < / p >
< / td >
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=148061" > WebKit bug #148061< / a > , < a href = "https://openradar.appspot.com/22299624" > Apple Safari Radar #22299624< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/16988" > #16988< / a >
< / td >
< / tr >
2014-11-12 18:15:07 +01:00
< tr >
2014-12-20 02:34:43 +01:00
< td > Safari (iOS)
2014-11-12 18:15:07 +01:00
< / td >
2014-12-20 02:34:43 +01:00
< td > < p > < code > display: block< / code > causes text of temporal < code > < input> < / code > s to become vertically misaligned< / p >
< / td >
2015-01-11 03:25:18 +01:00
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=139848" > WebKit bug #139848< / a > , < a href = "https://openradar.appspot.com/19434878" > Apple Safari Radar #19434878< / a >
2014-11-12 18:15:07 +01:00
< / td >
2014-12-20 02:34:43 +01:00
< td > < a href = "https://github.com/twbs/bootstrap/issues/11266" > #11266< / a > , < a href = "https://github.com/twbs/bootstrap/issues/13098" > #13098< / a >
2014-11-12 18:15:07 +01:00
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2015-07-18 08:25:47 +02:00
< tr >
< td > Safari (iOS)
< / td >
< td > < p > Tapping below < code > < input> < / code > s can focus them in some cases< / p >
< / td >
< td > < a href = "https://bugs.webkit.org/show_bug.cgi?id=146244" > WebKit bug #146244< / a > , < a href = "https://openradar.appspot.com/21509310" > Apple Safari Radar #21509310< / a >
< / td >
< td > < a href = "https://github.com/twbs/bootstrap/issues/15968" > #15968< / a >
< / td >
< / tr >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< / tbody >
< / table >
< / div >
< / div >
< / div >
2015-08-19 08:18:20 +02:00
2014-06-26 18:46:59 +02:00
< / div >
< / div >
<!-- Footer
================================================== -->
< footer class = "bs-docs-footer" role = "contentinfo" >
< div class = "container" >
< div class = "bs-docs-social" >
< ul class = "bs-docs-social-buttons" >
< li >
2015-06-16 18:50:35 +02:00
< iframe class = "github-btn" src = "https://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=watch&count=true" width = "100" height = "20" title = "Star on GitHub" > < / iframe >
2014-06-26 18:46:59 +02:00
< / li >
< li >
2015-06-16 18:50:35 +02:00
< iframe class = "github-btn" src = "https://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=fork&count=true" width = "102" height = "20" title = "Fork on GitHub" > < / iframe >
2014-06-26 18:46:59 +02:00
< / li >
< li class = "follow-btn" >
2015-02-06 04:40:29 +01:00
< a href = "https://twitter.com/getbootstrap" class = "twitter-follow-button" data-link-color = "#0069D6" data-show-count = "true" > Follow @getbootstrap< / a >
2014-06-26 18:46:59 +02:00
< / li >
< li class = "tweet-btn" >
2015-02-06 04:40:29 +01:00
< a href = "https://twitter.com/share" class = "twitter-share-button" data-url = "http://getbootstrap.com/" data-count = "horizontal" data-via = "getbootstrap" data-related = "mdo:Creator of Bootstrap" > Tweet< / a >
2014-06-26 18:46:59 +02:00
< / li >
< / ul >
< / div >
2014-10-29 20:17:44 +01:00
< p > Designed and built with all the love in the world by < a href = "https://twitter.com/mdo" target = "_blank" > @mdo< / a > and < a href = "https://twitter.com/fat" target = "_blank" > @fat< / a > .< / p >
2014-09-22 19:24:07 +02:00
< p > Maintained by the < a href = "https://github.com/orgs/twbs/people" > core team< / a > with the help of < a href = "https://github.com/twbs/bootstrap/graphs/contributors" > our contributors< / a > .< / p >
2015-03-16 16:57:29 +01:00
< p > Code licensed under < a rel = "license" href = "https://github.com/twbs/bootstrap/blob/master/LICENSE" target = "_blank" > MIT< / a > , documentation under < a rel = "license" href = "https://creativecommons.org/licenses/by/3.0/" target = "_blank" > CC BY 3.0< / a > .< / p >
2015-01-19 18:10:41 +01:00
< ul class = "bs-docs-footer-links text-muted" >
2015-06-16 18:50:35 +02:00
< li > Currently v3.3.5< / li >
2014-06-26 18:46:59 +02:00
< li > · < / li >
< li > < a href = "https://github.com/twbs/bootstrap" > GitHub< / a > < / li >
< li > · < / li >
< li > < a href = "../getting-started/#examples" > Examples< / a > < / li >
< li > · < / li >
< li > < a href = "../2.3.2/" > v2.3.2 docs< / a > < / li >
< li > · < / li >
< li > < a href = "../about/" > About< / a > < / li >
< li > · < / li >
< li > < a href = "http://expo.getbootstrap.com" > Expo< / a > < / li >
< li > · < / li >
< li > < a href = "http://blog.getbootstrap.com" > Blog< / a > < / li >
< li > · < / li >
2014-09-22 19:24:07 +02:00
< li > < a href = "https://github.com/twbs/bootstrap/issues" > Issues< / a > < / li >
2014-06-26 18:46:59 +02:00
< li > · < / li >
< li > < a href = "https://github.com/twbs/bootstrap/releases" > Releases< / a > < / li >
< / ul >
< / div >
< / footer >
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
2015-06-16 18:50:35 +02:00
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" > < / script >
2014-06-26 18:46:59 +02:00
2015-06-16 22:13:14 +02:00
< script src = "../dist/js/bootstrap.min.js" > < / script >
2014-10-29 20:17:44 +01:00
2015-06-16 22:13:14 +02:00
< script src = "../assets/js/docs.min.js" > < / script >
2014-10-29 20:17:44 +01:00
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "../assets/js/ie10-viewport-bug-workaround.js" > < / script >
2014-06-26 18:46:59 +02:00
< script >
window.twttr = (function (d,s,id) {
var t, js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return; js=d.createElement(s); js.id=id; js.async=1;
js.src="https://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs);
return window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } });
}(document, "script", "twitter-wjs"));
< / script >
<!-- Analytics
================================================== -->
< script >
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '4f0dc9fef5a1f55508000013');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
< / script >
< / body >
< / html >