Re: [css3-lists] glyphs in single string

On 11/23/2011 10:36 AM, Tab Atkins Jr. wrote:
>
> What if we used a function as the quotes instead?
>
> @counter-style lower-norwegian {
>    type: alphabetic;
>    glyphs: glyphs(a b c d e f g h i j k l m n o p q r s t u v w x y z æ ø å);
> }
>
> We'd tokenize the contents of the glyphs() function by spaces, and
> only require that the various brace characters ()[]{} be escaped
> within it.

Why have the functional notation at all? Just put the glyphs in
the property directly.

@counter-style lower-norwegian {
    type: alphabetic;
    glyphs: a b c d e f g h i j k l m n o p q r s t u v w x y z æ ø å;
}

~fantasai

Received on Wednesday, 23 November 2011 23:32:25 UTC