Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
indent20px
styledisc

Common Attributes

Name

Description

id

Used to reference the xul element in code

flex

a relative value describing the size of an element relative to its siblings

...

<tabbox  id="tabbox">
                <tabs id="tabs">
                   <tab id="firstTab" label="First Tab" />
                   <tab id="secondTab" label="Second Tab" />
                </tabs>
                <tabpanels id="tabpanels">
    <tabpanel id="firstTabPanel">
    <!-- Content goes here -->
   </tabpanel>

    <tabpanel id="firstTabPanel">
    <!-- Content goes here -->
   </tabpanel>
</tabbox>   

...