Thread: [Xsltforms-support] external css stylesheets
Brought to you by:
alain-couthures
From: ac <ac...@hy...> - 2010-12-27 05:58:47
|
Hi, Is there a good reason why references to external css stylesheets, in an XSLTForm are not copied to the xhtml:head, by xsltforms.xsl, so that xsltforms can use external css stylesheets? A corollary to this question would be why not also copy meta tags? Thank you ac |
From: COUTHURES A. <ala...@ag...> - 2010-12-27 07:21:29
|
Hello, Le 27/12/2010 06:58, ac a écrit : > Hi, > > Is there a good reason why references to external css stylesheets, in an > XSLTForm are not copied to the xhtml:head, by xsltforms.xsl, so that > xsltforms can use external css stylesheets? Yes, because XSLTForms can interpret CSS directives for XForms elements using the syntax for namespaces (xf|trigger for example) as the Mozilla extension does. Because this is performed by the XSLT stylesheet, the external files are read with the document() XSLT function which requires the file to be a well-formed XML document. This can be deactivated in the config.xsl files. Have a look at http://en.wikibooks.org/wiki/XSLTForms/XSLTForms_only_Extensions > A corollary to this question would be why not also copy meta tags? Meta tags should be copied. Can you send a test case for this issue? Thanks! -Alain |
From: ac <ac...@hy...> - 2010-12-27 09:17:34
|
Hi, I am sorry, but I do not quite understand. For example, in the xsltforms.xsl file (line 98+), couldn't one have something like: ... <head> <xsl:copy-of select="xhtml:head/@* | head/@*"/> <xsl:copy-of select="*/xhtml:meta | */meta"/> <link type="text/css"href="{$resourcesdir}xsltforms.css"rel="stylesheet"/> <xsl:copy-of select="*/xhtml:link | */link"/> ... The source form is well formed xhtml, and there are no css directive to interpret, are there? Thank you, ac > Hello, > > Le 27/12/2010 06:58, ac a écrit : >> Hi, >> >> Is there a good reason why references to external css stylesheets, in an >> XSLTForm are not copied to the xhtml:head, by xsltforms.xsl, so that >> xsltforms can use external css stylesheets? > Yes, because XSLTForms can interpret CSS directives for XForms > elements using the syntax for namespaces (xf|trigger for example) as > the Mozilla extension does. > > Because this is performed by the XSLT stylesheet, the external files > are read with the document() XSLT function which requires the file to > be a well-formed XML document. > > This can be deactivated in the config.xsl files. Have a look at > http://en.wikibooks.org/wiki/XSLTForms/XSLTForms_only_Extensions >> A corollary to this question would be why not also copy meta tags? > Meta tags should be copied. Can you send a test case for this issue? > > Thanks! > > -Alain > |
From: COUTHURES A. <ala...@ag...> - 2010-12-27 12:49:27
|
Hi, > For example, in the xsltforms.xsl file (line 98+), couldn't one have > something like: > > ... > <head> > <xsl:copy-of select="xhtml:head/@* | head/@*"/> > <xsl:copy-of select="*/xhtml:meta | */meta"/> > <link type="text/css"href="{$resourcesdir}xsltforms.css"rel="stylesheet"/> > <xsl:copy-of select="*/xhtml:link | */link"/> > ... > You are using an old version of XSLTForms and now, in the latest build, this is like this: <head> <xsl:copy-of select="xhtml:head/@* | head/@*"/> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <xsl:copy-of select="xhtml:meta[@http-equiv != 'Content-Type'] | head/meta[@http-equiv != 'Content-Type']"/> <link type="text/css" href="{$resourcesdir}xsltforms.css" rel="stylesheet"/> <xsl:apply-templates select="xhtml:head/xhtml:*[local-name() != 'script' and local-name() != 'style' and local-name() != 'link' and local-name() != 'meta'] | xhtml:head/comment() | head/title | head/comment()" mode="nons"/> <xsl:apply-templates select="xhtml:head/xhtml:style | xhtml:head/xhtml:link | head/style | head/link"/> <script src="{$resourcesdir}xsltforms.js" type="text/javascript">/* */</script> Link directives are interpreted by the XSLT stylesheet unless the <nocss/> option is set in the config.xsl file. -Alain |
From: ac <ac...@hy...> - 2010-12-27 09:24:47
|
Hi, Why am I getting css error warnings on xsltforms.css, like: Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 72 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 83 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 101 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 135 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 174 Avertissement : Erreur d'analyse de la valeur pour « filter ». Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 185 Avertissement : Propriété « -moz-opacity » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 187 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 224 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 245 Avertissement : Erreur d'analyse de la valeur pour « filter ». Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 291 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 296 Thank you, ac |
From: ac <ac...@hy...> - 2010-12-27 10:49:13
|
Hi, To try to better explain the situation, the xsltforms forms are on web site that is on a portal. The portal has global css stylesheet(s), each web site has its own css stylesheet(s) that overwrite elements of the portal stylesheet that need to be overwritten, and each forms can have its own css stylesheet(s) to further overwrite required styling rules. All these stylesheets need to be considered when rendering the xsltforms forms. PIs could be used for external css stylesheets but currently, xhtml link elements are used as in <link type="text/css" href="abc.css" rel="stylesheet"/>. How can we best ensure that all css stylesheets are properly considered and cascaded, for the forms? Thank you. Regards, Andre I am sorry, but I do not quite understand. For example, in the xsltforms.xsl file (line 98+), couldn't one have something like: ... <head> <xsl:copy-of select="xhtml:head/@* | head/@*"/> <xsl:copy-of select="*/xhtml:meta | */meta"/> <link type="text/css"href="{$resourcesdir}xsltforms.css"rel="stylesheet"/> <xsl:copy-of select="*/xhtml:link | */link"/> ... The source form is well formed xhtml, and there are no css directive to interpret, are there? Thank you, ac > Hello, > > Le 27/12/2010 06:58, ac a écrit : >> Hi, >> >> Is there a good reason why references to external css stylesheets, in an >> XSLTForm are not copied to the xhtml:head, by xsltforms.xsl, so that >> xsltforms can use external css stylesheets? > Yes, because XSLTForms can interpret CSS directives for XForms > elements using the syntax for namespaces (xf|trigger for example) as > the Mozilla extension does. > > Because this is performed by the XSLT stylesheet, the external files > are read with the document() XSLT function which requires the file to > be a well-formed XML document. > > This can be deactivated in the config.xsl files. Have a look at > http://en.wikibooks.org/wiki/XSLTForms/XSLTForms_only_Extensions >> A corollary to this question would be why not also copy meta tags? > Meta tags should be copied. Can you send a test case for this issue? > > Thanks! > > -Alain > |
From: ac <ac...@hy...> - 2010-12-27 16:42:11
|
Hi, The version that I am using is the one currently available from your site and sourceforge (BetaRC3), but it is like I showed you and not like what you sent me, as below. Where can I get the latest version? Looking at your code below, I cannot see how my css stylesheets could be applied without adding <xsl:copy-of select="*/xhtml:link | */link"/> as can currently do with BetaRC3. Also, The xsltforms.css is also still giving me the css error warnings below: Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 72 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 83 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 101 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 135 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 174 Avertissement : Erreur d'analyse de la valeur pour « filter ». Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 185 Avertissement : Propriété « -moz-opacity » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 187 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 224 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 245 Avertissement : Erreur d'analyse de la valeur pour « filter ». Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 291 Avertissement : Propriété « box-sizing » inconnue. Déclaration abandonnée. Fichier Source : file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css Ligne : 296 Help is appreciated. Thank you. Regards, ac > Hi, >> For example, in the xsltforms.xsl file (line 98+), couldn't one have >> something like: >> >> ... >> <head> >> <xsl:copy-of select="xhtml:head/@* | head/@*"/> >> <xsl:copy-of select="*/xhtml:meta | */meta"/> >> <link >> type="text/css"href="{$resourcesdir}xsltforms.css"rel="stylesheet"/> >> <xsl:copy-of select="*/xhtml:link | */link"/> >> ... >> > You are using an old version of XSLTForms and now, in the latest > build, this is like this: > > <head> > <xsl:copy-of select="xhtml:head/@* | head/@*"/> > <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> > <xsl:copy-of select="xhtml:meta[@http-equiv != 'Content-Type'] | > head/meta[@http-equiv != 'Content-Type']"/> > <link type="text/css" href="{$resourcesdir}xsltforms.css" > rel="stylesheet"/> > <xsl:apply-templates select="xhtml:head/xhtml:*[local-name() != > 'script' and local-name() != 'style' and local-name() != 'link' and > local-name() != 'meta'] | xhtml:head/comment() | head/title | > head/comment()" mode="nons"/> > <xsl:apply-templates select="xhtml:head/xhtml:style | > xhtml:head/xhtml:link | head/style | head/link"/> > <script src="{$resourcesdir}xsltforms.js" type="text/javascript">/* > */</script> > > Link directives are interpreted by the XSLT stylesheet unless the > <nocss/> option is set in the config.xsl file. > > -Alain > |
From: COUTHURES A. <ala...@ag...> - 2010-12-27 20:50:53
|
Le 27/12/2010 17:42, ac a écrit : > Hi, > > The version that I am using is the one currently available from your > site and sourceforge (BetaRC3), but it is like I showed you and not > like what you sent me, as below. > > Where can I get the latest version? The online version at agencexml.com is clearly an old one but still good for the examples... The Beta3RC already contained <xsl:apply-templates select="xhtml:head/xhtml:style | xhtml:head/xhtml:link | head/style | head/link"/> The latest build is available in the SVN SF repository at http://xsltforms.svn.sourceforge.net/viewvc/xsltforms/branches/dataisland/build/ > > Looking at your code below, I cannot see how my css stylesheets could > be applied without adding > <xsl:copy-of select="*/xhtml:link | */link"/> > as can currently do with BetaRC3. There is a template for that: <xsl:template xmlns:xsl="http://www.w3.org/1999/XSL/Transform" match="xhtml:link[@type='text/css' and @rel='stylesheet'] | link[@type='text/css' and @rel='stylesheet']"> <xsl:choose> <xsl:when test="$config/options/nocss"> <xsl:copy-of select="."/> </xsl:when> <xsl:when test="translate(normalize-space(/processing-instruction('css-conversion')[1]), 'YESNO ', 'yesno')='no'"> <xsl:copy-of select="."/> </xsl:when> <xsl:otherwise> <style type="text/css"> <xsl:call-template name="cssconv"> <xsl:with-param name="input" select="normalize-space(document(@href,/)/*)"/> </xsl:call-template> </style> </xsl:otherwise> </xsl:choose> </xsl:template> As you can see, when the nocss option is set, an xsl:copy-of is performed! > The xsltforms.css is also still giving me the css error warnings below: > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 72 > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 83 > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 101 > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 135 > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 174 > > Avertissement : Erreur d'analyse de la valeur pour « filter ». > Déclaration abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 185 > > Avertissement : Propriété « -moz-opacity » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 187 > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 224 > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 245 > > Avertissement : Erreur d'analyse de la valeur pour « filter ». > Déclaration abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 291 > > Avertissement : Propriété « box-sizing » inconnue. Déclaration > abandonnée. > Fichier Source : > file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css > > Ligne : 296 Those properties are there for compatibility with FireFox: https://developer.mozilla.org/en/CSS/box-sizing They're just warnings, right? Thanks! -Alain |
From: ac <ac...@hy...> - 2010-12-27 23:57:05
|
Hi Alain, I was mistaken in thinking that <nocss/> meant not to copy css links, but now, I guess that it means no in-line header css, probably. I got the latest version from the SVN SF repo. Warnings are just warnings indeed. I am getting them from FireFox though. Now the stylesheets are being applied. Thank you. Best wishes. Regards, Andre > Le 27/12/2010 17:42, ac a écrit : >> Hi, >> >> The version that I am using is the one currently available from your >> site and sourceforge (BetaRC3), but it is like I showed you and not >> like what you sent me, as below. >> >> Where can I get the latest version? > > The online version at agencexml.com is clearly an old one but still > good for the examples... > > The Beta3RC already contained <xsl:apply-templates > select="xhtml:head/xhtml:style | xhtml:head/xhtml:link | head/style | > head/link"/> > > The latest build is available in the SVN SF repository at > http://xsltforms.svn.sourceforge.net/viewvc/xsltforms/branches/dataisland/build/ >> >> Looking at your code below, I cannot see how my css stylesheets could >> be applied without adding >> <xsl:copy-of select="*/xhtml:link | */link"/> >> as can currently do with BetaRC3. > There is a template for that: > > <xsl:template xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > match="xhtml:link[@type='text/css' and @rel='stylesheet'] | > link[@type='text/css' and @rel='stylesheet']"> > <xsl:choose> > <xsl:when test="$config/options/nocss"> > <xsl:copy-of select="."/> > </xsl:when> > <xsl:when > test="translate(normalize-space(/processing-instruction('css-conversion')[1]), > 'YESNO ', 'yesno')='no'"> > <xsl:copy-of select="."/> > </xsl:when> > <xsl:otherwise> > <style type="text/css"> > <xsl:call-template name="cssconv"> > <xsl:with-param name="input" > select="normalize-space(document(@href,/)/*)"/> > </xsl:call-template> > </style> > </xsl:otherwise> > </xsl:choose> > </xsl:template> > > As you can see, when the nocss option is set, an xsl:copy-of is performed! >> The xsltforms.css is also still giving me the css error warnings below: >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 72 >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 83 >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 101 >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 135 >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 174 >> >> Avertissement : Erreur d'analyse de la valeur pour « filter ». >> Déclaration abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 185 >> >> Avertissement : Propriété « -moz-opacity » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 187 >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 224 >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 245 >> >> Avertissement : Erreur d'analyse de la valeur pour « filter ». >> Déclaration abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 291 >> >> Avertissement : Propriété « box-sizing » inconnue. Déclaration >> abandonnée. >> Fichier Source : >> file:///C:/dev/jboss-3.2.5/server/default/deploy/html.ear/html.war/library/hyperform/stratml/asset/xsltforms/xsltforms.css >> >> Ligne : 296 > > Those properties are there for compatibility with FireFox: > https://developer.mozilla.org/en/CSS/box-sizing > > They're just warnings, right? > > Thanks! > > -Alain |