HTML

howard-tables2.html

Feb 24th, 2017
196
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Howard Colspan and Rowspan</title>
  6. <style>
  7. body {
  8.         background-color:gray;
  9.         font-variant:small-caps;
  10. }
  11. table {
  12.         border:3px solid red;
  13.         border-radius: 20px 0px 20px 0px;
  14.         text-align:center;
  15.         font-size:24px;
  16. }
  17. td,tr {
  18.         border:3px solid pink;
  19.         color:pink;
  20.         height:100px;
  21.         width:100px;
  22. }
  23. .btmrt {
  24.         border-radius:0px 0px 15px 0px;
  25. }
  26. .tplft {
  27.         border-radius:15px 0px 0px 0px;
  28. }
  29. caption,h1,h2 {
  30.         color:pink;
  31. }
  32. #right {
  33.         float:right;
  34. }
  35. table#2 {
  36.         width:500px;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <h1>Colspan and Rowspan Examples</h1>
  42. <h2>Colspan Example</h2>
  43. <table>
  44. <caption>Colspan goes in the "open" part of the td tag.</caption>
  45.     <tr>
  46.         <td colspan="2" class="tplft">2 Columns</td>
  47.     </tr>
  48.     <tr>
  49.         <td>1 Column</td>
  50.         <td class="btmrt">1 Column</td>
  51.     </tr>
  52. </table>
  53. <h2>Rowspan Example</h2>
  54. <table>
  55. <caption>Rowspan goes in the "open" part of the td tag.</caption>
  56.     <tr>
  57.         <td rowspan="2" class="tplft">2 Rows</td>
  58.         <td>1 Row</td>
  59.     </tr>
  60.     <tr>
  61.         <td class="btmrt">1 Row</td>
  62.     </tr>
  63. </table>
  64. <br />
  65. <table id="2">
  66.     <caption>This is a Caption</caption>
  67.     <tr>
  68.         <th colspan="2">Heading - Bold and Center</th>
  69.     </tr>
  70.     <!-- Row 1 -->
  71.     <tr>
  72.         <td>Row One Column One</td>
  73.         <td>Row One Column Two</td>
  74.     </tr>
  75.     <!-- Row 2 -->
  76.     <tr>
  77.         <td>Row Two Column One</td>
  78.         <td>Row Two Column Two</td>
  79.     </tr>
  80.     <!-- Row 3 -->
  81.     <tr>
  82.         <td rowspan="3">Row Three Column One</td>
  83.         <td>Row Three Column Two</td>
  84.     </tr>
  85.     <tr>
  86.         <td>Row Five Column Two</td>
  87.     </tr>
  88.     <tr>
  89.         <td class="btmrt">Row Six Column Two</td>
  90.     </tr>
  91. </table>
  92. </body>
  93. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment