🛠️A curated list of awesome things related to browser polyfills.
Polyfills help standardize the HTML, Javascript and CSS support across web browsers.
The native usage score indicates how common this feature is supported natively. The score is based on caniuse.com. Please note, that this score has nothing to do with the polyfill itself. This doesn't indicate how good / bad the polyfill is, only how much it is needed.
-
High Native Support
- indicates that at least 90% of all browsers support this feature natively. -
Moderate Native Support
- indicates that at least 70% of all browsers support this feature natively. -
Low Native Support
- indicates that no more than 70% of all browsers support this feature natively. -
Obsolete
- A feature that is obsoloted, and should not be used nor polyfilled.
The main polyfill suggested is always the one that is the easiest to implement, the most stable and with the least depencencies. If there is another good / better option that requires a build tool or a framework, it might still be shown inside the polyfill description. Labels:
- Experimental means that the project or the feature is still not quite production-ready.
- Stable indicates that the project is widely adopted and can be used in production.
- No Dependencies - the project has no third party dependencies (e.g jQuery).
Important note on the suggested Polyfills: The polyfills suggested just make things "work". Most solutions are not aimed at aesthetics.
In almost all cases, Modern HTML tags do not require polyfills, with the exception of some few, relatively uncommon tags.
(Work in Progress!) Polyfill for new HTML Tags that are not supported in old browsers.
- <Custom Elements> (Experimental, No Dependencies) -
Low Native Support
This allows the developer to define new HTML tags (Web components). Note: While there are other polyfills available, all of them, including the one suggested, are rather experimental.
Polyfills for HTML tags that are not as common or not standardized across all major browsers.
- <details> (Stable, No Dependencies) -
High Native Support
The details tag specifies details that the user can view or hide on demand. - <dialog> (Stable, No Dependencies) -
Moderate Native Support
the dialog tag create a dialog box that can be displayed as a modal or a window to the user. - <input type="number"> -
Moderate Native Support*
Note: Almost all browsers support this input type, but some browsers won't show UI widgets (e.g decrease / increase buttons for the input). The polyfill is quite old. - <datalist> -
Moderate Native Support
. A tag that offers the user to ener a custom value while still being able to pick a value from a defined list.
Old date and time related input types: (Most Polyfills are old and require old dependencies):
- <input type="datetime-local"> -
Moderate Native Support
. Note: The polyfill is quite old. - <input type="time"> Tag -
Moderate Native Support
. Note: The polyfill is quite old. - <input type="date"> -
Moderate Native Support
. Note: The polyfill is quite old. - <input type="month"> -
Moderate Native Support
. Note: The polyfill is quite old.
Polyfills for deprected HTML tags that are no longer supported in modern browsers. Please avoid using these tags
- <Blink> -
Obsolete
The blink tag flashes the enclosed text. Note: The polyfill utilize CSS to achieve the same effect. - <input type="datetime"> -
Obsolete
Note: There is also a modern Polymer polyfill which includes some other features -here
Polyfills for features that were introduced in CSS3. Unfortunately, most CSS polyfills might have problems with performance and Ajax / Javascript generated elements since they usually inject the polyfill at runtime when the page loads. You can read more about it here
- { display: grid } (No Dependencies) -
High Native Support
Note: There are other grid polyfills, but this one seems to be the most stable and maintained. - { display: flex } (No Dependencies) -
High Native Support
Note: There are other flexbox polyfills. All of them seemed to have some limitations. - CSS Variables (No Dependencies) -
High Native Support
Note: There is another, younger project that only aims to polyfill IE11 link
There are some deprecated CSS properties still in use today. However, unlike HTML or JS, browsers are more forgiven towards deprecated CSS properties. Since polyfilling these properties is bad practice, this list remains empty for now. You find some common deprecated CSS properties in the following link.