forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-module-lists.xml
48 lines (40 loc) · 3.08 KB
/
css-module-lists.xml
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
<?xml version="1.0" encoding="utf-8"?>
<CssModule name="Lists" standard-reference="http://www.w3.org/TR/css3-lists/" status="WD" pub-date="2011-05-24">
<CssProperty name="list-style-type" version="1.0" browsers="all" restriction="enum" type="list-style-type" description="Can be used to make an element look like a standard user interface element on the platform." syntax="<glyph> | <algorithmic> | <numeric> | <alphabetic> | <symbolic> | <non-repeating> | normal | none" standard-reference="http://www.w3.org/TR/css3-lists/#list-style-type" />
<CssProperty name="list-style-image" version="1.0" restriction="url" type="list-style-image" description="Sets the image that will be used as the list item marker. When the image is available, it will replace the marker set with the 'list-style-type' marker." syntax="<uri> | none" standard-reference="http://www.w3.org/TR/css3-lists/#list-style-image" />
<CssProperty name="list-style-position" version="1.0" restriction="enum" type="list-style-position" syntax="ul { $(name): inside; }" description="Specifies the position of the '::marker' pseudo-element's box in the list item." standard-reference="http://www.w3.org/TR/css3-lists/#list-style-position" />
<CssProperty name="list-style" version="1.0" restriction="enum, url" type="list-style-type, list-style-position, list-style-image" description="Shorthand for setting 'list-style-type', 'list-style-position' and 'list-style-image'" syntax="ul { $(name): square url('square.png');}" standard-reference="http://www.w3.org/TR/css3-lists/#list-style" />
<CssPropertyValue type="list-style-type">
<entry value="none" />
<entry value="circle" description="A hollow circle." />
<entry value="disc" description="A filled circle." />
<entry value="square" description="A filled square." />
<entry value="armenian" />
<entry value="georgian" />
<entry value="lower-roman" />
<entry value="upper-roman" />
<entry value="decimal" />
<entry value="decimal-leading-zero" />
<entry value="lower-alpha" />
<entry value="lower-greek" />
<entry value="lower-latin" />
<entry value="upper-alpha" />
<entry value="upper-latin" />
</CssPropertyValue>
<CssPropertyValue type="list-style-image">
<entry value="none" />
<entry value="url()" />
<entry value="linear-gradient()" />
<entry value="radial-gradient()" />
<entry value="repeating-linear-gradient()" />
<entry value="repeating-radial-gradient()" />
<entry value="image()" />
</CssPropertyValue>
<CssPropertyValue type="list-style-position">
<entry value="inside" description="The marker box is outside the principal block box, as described in the section on the ::marker pseudo-element below." />
<entry value="outside" description="The ::marker pseudo-element is an inline element placed immediately before all ::before pseudo-elements in the principal block box, after which the element's content flows." />
</CssPropertyValue>
<CssProperty name="display">
<entry value="marker" version="3.0" browsers="none" />
</CssProperty>
</CssModule>