Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <!-- begin styling section: do not edit the style section if you don't know CSS -->
  2. <style type="text/css">
  3. .simpleTable table{
  4. border-collapse: collapse;
  5. font: 10pt Verdana, Arial, Helvetica, sans-serif;
  6. empty-cells: show;
  7. }
  8.  
  9. .simpleTable table, .simpleTable th, .simpleTable td {
  10. border: 1px solid #5777C0;
  11. }
  12.  
  13. .simpleTable th, .simpleTable td {
  14. /*top and bottom 2px, right and left 5px*/
  15. padding: 2px 5px;
  16. }
  17.  
  18. .simpleTable th {
  19. white-space: nowrap;
  20. background-color: #5777C0;
  21. color: white;
  22. }
  23.  
  24. .simpleTable tr:nth-child(odd){ background-color:#ffffff; }
  25. .simpleTable tr:nth-child(even) { background-color:#d9e9f9; }
  26. </style>
  27. <!-- end styling section: do not edit the style section if you don't know CSS -->
  28. <!-- begin content section: tr means table row, th means table header, td means table cell -->
  29. <!-- edit the following template, fill your content into proper table cells-->
  30. <div class="simpleTable">
  31. <table>
  32. <caption>Statistics of Italian President Election (Partial)</caption>
  33. <tbody>
  34. <tr>
  35. <th>Year</th>
  36. <th>Rounds</th>
  37. <th>Winner</th>
  38. <th>Winner's vtes in final round</th>
  39. <th>Winner's vote in first round</th>
  40. </tr>
  41. <tr>
  42. <td>1946</td>
  43. <td>1</td>
  44. <td>Enrico de Nicola</td>
  45. <td>78.6%</td>
  46. <td>--</td>
  47. </tr>
  48. <tr>
  49. <td>1947</td>
  50. <td>1</td>
  51. <td>Enrico de Nicola</td>
  52. <td>94.0%</td>
  53. <td>--</td>
  54. </tr>
  55. <tr>
  56. <td>1948</td>
  57. <td>4</td>
  58. <td>Luigi Einaudi</td>
  59. <td>59.5%</td>
  60. <td>2.3%</td>
  61. </tr>
  62. <tr>
  63. <td>1955</td>
  64. <td>4</td>
  65. <td>Giovanni Gronchi</td>
  66. <td>79.0%</td>
  67. <td>3.7</td>
  68. </tr>
  69. </tbody>
  70. </table>
  71. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement