Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <table id="table1">
  2. <thead>
  3. <tr>
  4. <th colspan="1">Line 1, Header 1</th>
  5. <th colspan="1">Line 1, Header 2</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <tr>
  10. <td>Line 2, Cell 1</td>
  11. <td>Line 2, Cell 2</td>
  12. </tr>
  13. <tr>
  14. <td>Line 3, Cell 1</td>
  15. <td>Line 3, Cell 2</td>
  16. </tr>
  17. </tbody>
  18. </table>
  19.  
  20. <table id="table2">
  21. <thead>
  22. <tr>
  23. <th colspan="2">Header</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <tr>
  28. <td>1</td>
  29. <td rowspan="2">Merging two lines</td>
  30. </tr>
  31. <tr>
  32. <td>2</td>
  33. </tr>
  34. <tr>
  35. <td colspan="2">Fusionning two cells</td>
  36. </tr>
  37. </tbody>
  38. </table>
  39.  
  40. <table id="table3">
  41. <tr>
  42. <th colspan="2" id="table3-txt">One cell</th>
  43. </tr>
  44.  
  45. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement