We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
template
1 parent 37b483c commit 77982e2Copy full SHA for 77982e2
normalize.css
@@ -44,10 +44,12 @@ audio:not([controls]) {
44
}
45
46
/**
47
- * Address styling not present in IE 8/9.
+ * Address `[hidden]` styling not present in IE 8/9.
48
+ * Hide the `template` element in IE, Safari, and Firefox < 22.
49
*/
50
-[hidden] {
51
+[hidden],
52
+template {
53
display: none;
54
55
test.html
@@ -96,6 +96,12 @@ <h1>Text-level semantics</h1>
96
The <var>var element</var> example
97
</p>
98
99
+ <h1>Template content</h1>
100
+ <template>
101
+ <h1>{{title}}</h2>
102
+ <content></content>
103
+ </template>
104
+
105
<h1>Embedded content</h1>
106
107
<h3>audio</h3>
0 commit comments