Dear All!

I had to deal with XForms and CSS in FF.

My css code is quiet simple derived from a w3c example.

CSS:
@namespace xf url("http://www.w3.org/2002/xforms";);

     xf|group { display: table; }
     xf|group > xf|label { display: table-caption; }
     xf|textarea { display: table-row; }
     xf|input { display: table-row; }
     xf|label { display: table-cell; }
           
     .xf-value { display: table-cell;  width: 10em;}


The HTML:
           <xf:group id="baseline_group">
                       <xf:label>Baseline</xf:label>
                            <xf:input ref="//baseline/appearance">
                               <xf:label>Appearance</xf:label>
                            </xf:input>
              
                            <xf:textarea 
ref="//baseline/healthcareUtilization">
                               <xf:label>Healthcare</xf:label>
                            </xf:textarea>
            </xf:group>       


RESULT in FF:

Baseline
Appearance
Healthcare

Yes as you can see the input controls are not showed up.

But if I comment the display:table from the xf|group everything is OK.

Is it the normal rendering method and I missed something or it is some 
kind of bug?

Regards
 Viktor

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to