The following w3c documents mentions rowgroup
- http://www.w3.org/TR/html401/struct/tables.html#h-11.2.6
- http://www.w3.org/TR/html401/struct/tables.html#rowgroups
<!ENTITY % Scope "(row|col|rowgroup|colgroup)">
Is there such an attribute or property?
No, there is no such element. If you want to group rows, you can put the particular
trelements in the same class.The “rowgroup” you are referring to is a row group that is naturally formed by an element like
thead,tbodyandtfoot. And Scope is used to define the value set in the same-named attributescopethat is used to refer to the scope the currentthelement is providing information for:Here Scope is a parameter entity with the value
(row|col|rowgroup|colgroup). This entity is then refered to in the declaration of the attribute value list ofscopewith the parameter entity reference%Scope;.Parameter entities in SGML are like variables and references to such parameter entities are replaced by its values. That means the following two attribute definitions are equal: