Bonjour Hussein,
Thank you for answer, this was coming in my mind, and when I receive your
answer I finalize the test and it runs very well.
--
Cordialement,
Marc Courriel : Marc.Liste at free.fr
-----------------------------------------
Le mardi 21 f?vrier 2006 ? 17:58:33, vous ?criviez :
HS> Marc wrote:
>> I'm a new user from XMLEditor and I try to use it whith existing DTD.
>> I have a problem with the image-viewport function, because the
>> attribute have to be in lowercase and mine is in mixed case.
>> Is there a workaround about this?
>> I know that in XHTML the attributes are in lowercase but in
>> user DTD they can be in uppercase or mixed.
HS> In CSS, identifiers are generally case-insensitive. Therefore, in such
HS> case, you need to use a string instead of an identifier.
HS> Example (*BAD* will not work):
HS> ---
HS> image {
HS> display: inline;
HS> content: image-viewport(attribute, srcFile,
HS> data-type, anyURI);
HS> }
HS> ---
HS> Example (should work fine):
HS> ---
HS> image {
HS> display: inline;
HS> content: image-viewport(attribute, "srcFile",
HS> data-type, anyURI);
HS> }
HS> ---