Custom Elements </> Probably the most obvious aspect of a web component is the ability to create, modify and control HTML elements. The introduction of Custom Elements into browser standards enables us to break away from the limited vocabulary that HTML offers. This means we can create true mark-up semantics that are really meaningful in…
Author: Asif Amod
Hands on with Web Components
This tutorial will take you through using and creating Web Components within your projects. (See Web Components,the new standard in modular HTML development) As browsers are still undergoing development to support Web Components,Polymer will be used.Polymer is a component polyfill and library created by Google (polymer-project.org).This adds support to all modern browsers as well a…
Web Components,the new standard in modular HTML development
Web components have been around for a long time, under the hood of HTML.They are simply a combination of HTML, CSS and JavaScript package together as an HTML element. Web Components actually account for many of the huge strides that have been made with HTML5. One of the best example is the <video> element, by…