We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d62d08 commit b661ec0Copy full SHA for b661ec0
contain/contain-style.html renamed to contain/contain-style-counter.html
contain/contain-style-quotes.html
@@ -0,0 +1,28 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Float interference</title>
6
+ <style>
7
+ body {
8
+ quotes: "«" "»" "‹" "›";
9
+ }
10
+ .open-quote:before {
11
+ content: open-quote;
12
13
+
14
+ .close-quote:after {
15
+ content: close-quote;
16
17
+ </style>
18
+ </head>
19
+ <body>
20
+ <span class="open-quote">
21
+ outer
22
+ <span style="contain: style">
23
+ <span class="open-quote"> inner </span>
24
+ </span>
25
26
+ <span class="close-quote"> close </span>
27
+ </body>
28
+</html>
0 commit comments