Re: [csswg-drafts] [css-values][css-namespaces] Vendor prefix in <dashed-ident> (#6099)

This does not need to reuse `@namespace`, of course.

~~~~ css
@prefix foo url("http://example.com/external.css");
~~~~ 

It may even be useful to alternatively be able to specify values inline, although I'm not sure whether such an at rule should contain rulesets with selectors:

~~~~ css
@prefix foo {
  :root {
    --bar: baz;
  }
}
~~~~

or just rules:

~~~~ css
@prefix foo {
  --bar: baz;
}
~~~~

I'm also not sure whether the prefix should be a quoted or unquoted string when it is specified in the at rule:

~~~~ css
@prefix "foo" /*...*/
~~~~

-- 
GitHub Notification of comment by Crissov
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6099#issuecomment-803938346 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Monday, 22 March 2021 10:06:36 UTC