Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap 4 browser support version

I am working on a new website and plan to use Bootstrap 4. Since its still in alpha stage, it is somewhat risky. Bootstrap docs mentions that all the latest browsers are supported but does not specify from which version on.

So is it possible to know that from which browser version is bootstrap 4 supported?

like image 651
Mandeep Jain Avatar asked May 29 '17 08:05

Mandeep Jain


People also ask

Is Bootstrap 4 still supported?

The v4 branch is currently in Active LTS and will receive bug fixes till 2021-07-01, after which it will only receive critical fixes till its End of Life. More information is available on the Bootstrap website. You should be running one of the supported release numbers listed above in the rightmost column.

Is Bootstrap 5 supported browsers?

Mobile DevicesBootstrap support most modern Android devices. Android browser and webview from Android 6 or later is also supporred. iOS Chrome, Firefox, and Safari are also supported.

Does Bootstrap work in ie11?

Bootstrap 5 drops support for Internet Explorer 11, but you can add support back by simply adding a CSS file and a few JavaScript polyfills.


3 Answers

The list of supported browsers can be found in the "package.json" file once you download bootstrap. It's also written on the bootstrap website in the documentation.
Here's the list of supported browsers for v4:

Chrome 45+
Firefox 38+
Opera 30+
Internet Explorer 10+
Edge 12+
iOS 9+
Safari 9+
Android 4.4+
like image 164
pol Avatar answered Sep 30 '22 17:09

pol


From bootstrap web site,

Bootstrap supports the latest, stable releases of all major browsers and platforms. On Windows, we support Internet Explorer 10-11 / Microsoft Edge.

They mentioned all stable major releases are supported. With supporting ESR versions. Im not so sure but they meant by it, that currently latest browser versions and all future versions could handle bootstrap 4 as it should be.

like image 39
Vishwa Avatar answered Sep 30 '22 16:09

Vishwa


Supported Browsers are:

"last 1 major version",
  ">= 1%",
  "Chrome >= 45",
  "Firefox >= 38",
  "Edge >= 12",
  "Explorer >= 10",
  "iOS >= 9",
  "Safari >= 9",
  "Android >= 4.4",
  "Opera >= 30"

Please refer to following URL for Supported Browsers: https://getbootstrap.com/docs/4.1/getting-started/browsers-devices/

While latest release versions can be found at following: https://github.com/twbs/bootstrap/releases

like image 45
Imran Javed Avatar answered Sep 30 '22 18:09

Imran Javed