File: disclosure-styles-ref.html

package info (click to toggle)
firefox 143.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,617,328 kB
  • sloc: cpp: 7,478,492; javascript: 6,417,157; ansic: 3,720,058; python: 1,396,372; xml: 627,523; asm: 438,677; java: 186,156; sh: 63,477; makefile: 19,171; objc: 13,059; perl: 12,983; yacc: 4,583; cs: 3,846; pascal: 3,405; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (75 lines) | stat: -rw-r--r-- 1,765 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reference: symbols function, invalid</title>
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org/">
<style type="text/css">
  @counter-style triangle-right {
    system: cyclic;
    symbols: \25b8;
    suffix: ' ';
  }
  @counter-style triangle-left {
    system: cyclic;
    symbols: \25c2;
    suffix: ' ';
  }
  @counter-style triangle-down {
    system: cyclic;
    symbols: \25be;
    suffix: ' ';
  }
  @counter-style triangle-up {
    system: cyclic;
    symbols: \25b4;
    suffix: ' ';
  }

  ul {
    padding: 0;
    list-style-position: inside;
  }

  .t-u { list-style-type: triangle-up; }
  .t-d { list-style-type: triangle-down; }
  .t-r { list-style-type: triangle-right; }
  .t-l { list-style-type: triangle-left; }
  div { font: 16px system-ui; margin: 1em; border: 1px solid gray; }
  li::marker { font-family: inherit; }
</style>

<div style="width: 10em;">
<ul dir="ltr">
  <li class="t-r">closed ltr
  <li class="t-d">open ltr
</ul>
<ul dir="rtl">
  <li class="t-l">closed rtl
  <li class="t-d">open rtl
</ul>
<p dir="ltr">&#x25b8;&nbsp;closed ltr
<p dir="rtl">&#x25c2;&nbsp;closed rtl
</div>
<div style="writing-mode: vertical-lr; height: 10em;">
<ul dir="ltr">
  <li class="t-d">closed ltr
  <li class="t-r">open ltr
</ul>
<ul dir="rtl">
  <li class="t-u">closed rtl
  <li class="t-r">open rtl
</ul>
<p dir="ltr">&#x25be;&nbsp;closed ltr
<p dir="rtl">&#x25b4;&nbsp;closed rtl
</div>
<div style="writing-mode: vertical-rl; height: 10em;">
<ul dir="ltr">
  <li class="t-d">closed ltr
  <li class="t-l">open ltr
</ul>
<ul dir="rtl">
  <li class="t-u">closed rtl
  <li class="t-l">open rtl
</ul>
<p dir="ltr">&#x25be;&nbsp;closed ltr
<p dir="rtl">&#x25b4;&nbsp;closed rtl
</div>