'scope' Example : scope « HTML Attributes Reference « HTML CSS Reference






'scope' Example

    
<HTML>
<head><Title>Example For scope</Title></head>
<BODY>
<table id="myT2" rules="" border="1">
   <tr>
      <th scope="colgroup">Header 1</th>
      <th scope="colgroup">Header 2</th>
      <th scope="colgroup">Header 3</th>
      <th scope="colgroup">Header 4</th>
      <th scope="colgroup">Header 5</th>
      <th scope="colgroup">Header 6</th>
   </tr>
   <tr>
      <th scope="rowgroup">Row 1</th>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
      <td scope="col">Cell info 1</td>
      <td>Cell</td>
   </tr>
   <tr>
      <th scope="rowgroup">Row 2</th>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
   </tr>
   <tr>
      <th scope="rowgroup">Row 3</th>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
   </tr>
   <tr>
      <th scope="rowgroup">Row 4</th>
      <td scope="row">Cell info 2</td>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
      <td>Cell</td>
    </tr>
</table>
</BODY>
</HTML>  
    
      
      








Related examples in the same category

1.'scope' Syntax and Note
2.scope is applied to