Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.84 KB

webcomponents.md

File metadata and controls

22 lines (14 loc) · 1.84 KB

feature: Web Components status: caution tags: polyfill kind: api polyfillurls: webcomponents.js moreurl: https://www.webcomponents.org/

Web Components are a collection of standards which are working their way through the W3C:

  • HTML Templates, a native templating system which allows reusable HTML code using the new <template> tag

  • Custom Elements, which allows authors to define and use custom HTML elements

  • Shadow DOM, allows authors to create an independent new DOM tree nested inside another DOM tree

  • HTML Imports, which allows authors to embed HTML documents in other HTML files, using the <link rel=import> element

Taken together, these proposed specs have the potential to bring huge enhancements to our web development toolkit. They allow us to bundle markup and styles into custom HTML elements, that means the styles that you write always render as you intended, and your HTML is safe from the prying eyes of external JavaScript.

At present, full support is only available in Chrome and Opera. However, given the potential benefits Web Components bring to the table, it might be a good idea to start experimenting with the APIs now, and help get constructive feedback and tests back to the spec writers. Check Can I Use or Webcomponents.org for up to date browser support status.

Libraries such as Polymer (from Google) and X-Tag (from Mozilla) are driving the evolution of these specs and makes it easier to create your Web Components.