We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc091cc commit ccdb161Copy full SHA for ccdb161
normalize.css
@@ -342,8 +342,9 @@ template {
342
343
/**
344
* Add the correct display in IE 10.
345
+ * Except `hidden="until-found"` because `content-visibility: hidden` is applied.
346
*/
347
-[hidden] {
348
+[hidden]:not([hidden="until-found"]) {
349
display: none;
350
}
test.html
@@ -142,6 +142,7 @@ <h1>{{title}}</h1>
142
<content></content>
143
</template>
144
<p hidden>This should be hidden</p>
145
+ <p hidden="until-found">This is not display none</p>
146
</div>
147
148
<h2 class="Test-describe"><code>a</code></h2>
0 commit comments