# HG changeset patch # Parent cb4c8fe2343ca15d4a1a98f224059ae41220f107 Define list modifier (#) as suggested by Anne van Kesteren; improve examples diff --git a/Overview.src.html b/Overview.src.html --- a/Overview.src.html +++ b/Overview.src.html @@ -187,6 +187,9 @@ Component value multipliers
  • A pair of numbers in curly braces ({A,B}) indicates that the preceding type, word, or group occurs at least A and at most B times. + +
  • A hash mark (#) indicates that the preceding type, word, or + group occurs one or more times, separated by comma tokens.

    @@ -213,17 +216,46 @@ Property value examples

    Below are some examples of properties with their corresponding value definition fields -

    -

    Here are some sample properties with corresponding value definition fields: - -
    PropertyValue definition field -
    min-width<length> | <percentage> | inherit -
    outline-color<color> | invert | inherit -
    orphans<integer> | inherit -
    pitch<frequency> | x-low | low | medium | high | x-high | inherit -
    string-set[[ <identifier> <content-list>] [, <identifier> <content-list>]* ] | none -
    -

    +
    + + + + + +
    Property + Value definition field + Example value +
    'orphans' + <integer> + ''3'' +
    'text-align' + left | right | center | justify + ''center'' +
    'padding-top' + <length> | <percentage> + ''5%'' +
    'outline-color' + <color> | invert + ''#fefefe'' +
    'text-decoration' + none | underline || overline || line-through || blink + ''overline underline'' +
    'font-family' + <family-name># + ''"Gill Sans", Futura, sans-serif'' +
    'border-width' + [ <length> | thick | medium | thin ]{1,4} + ''2px medium 4px'' +
    'text-shadow' + [ inset? && [ <length>{2,4} && <color>? ] ]# | none + ''3px 3px rgba(50%, 50%, 50%, 50%), lemonchiffon 0 0 4px inset'' +
    'voice-pitch' +
    <frequency> && absolute |
    +[[x-low | low | medium | high | x-high] ||
    + [<frequency> | <semitones> | <percentage>]]
    +
    ''-2st x-low'' +
    +

    Syntax and terminology