Browser Support for Angular Material

I want to use Angular Material for my next projects. https://material.angularjs.org

I did not find any documentation about which browsers it supports. Does anyone know how it works domestically and what to expect?

From what I understand, the flex css attribute, for example, is not supported by IE <10. Do you know that Angular stuff, does it have a fallback design for use without flex css?

http://caniuse.com/#feat=flexbox

+5
source share
2 answers

In the official documentation :

Please note: using Angular material requires the use of Angular1.3.x or higher. Angular Material is designed for all browsers with n-1 versions; where n is the current browser version.

You can also find several polyfill to expand browser compatibility in the official forum: https://groups.google.com/forum/#!forum/ngmaterial

+4
source

How angular Material uses CSS3 Flexbox Supported browsers: IE 11+ , Chrome , Safari , Firefox , Android 4.2+ and iOS 8+ .

More information can be found at

http://angularjs.blogspot.co.uk/2015/12/angular-material-10-now-available.html

+8
source

Source: https://habr.com/ru/post/1237282/


All Articles