XUL Programmer's Reference Manual

<rows> Attributes

Attributes Common Children
id row
   

The <rows> element is a child of <grid> in which you define distinct grid rows. It contains <row> children, which in turn can contain any XUL element. Refer to <grid> for more information about grid layout.

<grid> 
   <columns> 
      <column flex="1"/> 
      <column flex="1"/> 
   </columns> 

   <rows> 
     <row flex="1"> 
       <button value="cell1"/> 
       <button value="cell2" style="background-color: lightgrey;"/> 
     </row> 
     <row flex="1"> 
       <button value="cell3"style="background-color: lightblue;"/> 
       <button value="cell4"/> 
     </row> 
   </rows> 
 </grid> 

 
Last updated: 5/23/00 Ian Oeschger