Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 17th, 2012  |  syntax: None  |  size: 0.71 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Adding a <th> element within a <th> element
  2. <table>
  3.   <thead>
  4.     <tr>
  5.       <th rowspan="2">Name</th>
  6.       <th rowspan="2">Email</th>
  7.       <th colspan="2">Contact</th>
  8.     </tr>
  9.     <tr>
  10.       <th>Phone</th>
  11.       <th>Address</th>
  12.     </tr>
  13.   </thead>
  14.   <tbody>
  15.     <!-- your data goes here -->
  16.   </tbody>
  17. </table>
  18.        
  19. <tr>
  20.   <th rowspan="2">Name</th>
  21.   <th rowspan="2">Email</th>
  22.   <th colspan="2">Contact</th>
  23. </tr>
  24. <tr>
  25.   <th>Number</th>
  26.   <th>Address</th>
  27. </tr>
  28.        
  29. <table>
  30. <tr>
  31. <th>Title 1</th><th>Title 2</th><th colspan="2">Title 3</th>
  32. </tr>
  33. <tr>
  34. <td>content</td><td>content</td><th>subtitle 1</th><th>subtitle 2</th>
  35. </tr>
  36. <tr>
  37. <td>content</td><td>content</td><td>content</td><td>content</td>
  38. </tr>
  39. </table>