November 2015 web platform update
Newly available on the web platform
Newly available
-
initial: The
initial
keyword resets any CSS property to its initial value as defined by the specification. For example, theinitial
value of thedisplay
property isinline
, regardless of the element being styled. Not to be confused withrevert
, which resets to the user or browser default style. Learn more. -
<template>: The
<template>
HTML element holds HTML fragments which you can clone and insert into the document using JavaScript. Learn more.