Advertisement
MEI-BoatRider

Table

Feb 26th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. table {
  6.   font-family: monospace, lucida-console;
  7.   border-collapse: separate;
  8.  
  9.   width: 255px;
  10. }
  11. td, th {
  12.   border-style: none;
  13.  
  14.   border-radius: 15px;
  15.  
  16.   text-align: center;
  17.  
  18.   padding: 12px;
  19. }
  20. tr:nth-child(even) {
  21.   background-color: #45Ba34;
  22. }
  23. tr:nth-child(odd) {
  24.   background-color: #88Fe83;
  25. }
  26. </style>
  27. </head>
  28.  
  29. <body>
  30. <table>
  31.   <tr>
  32.     <td>placeholder1</td>
  33.     <td>placeholder2</td>
  34.     <td>placeholder3</td>
  35.   </tr>
  36.  
  37.   <tr>
  38.     <td>1</td>
  39.     <td>5</td>
  40.     <td>9</td>
  41.     <td>long</td>
  42.   </tr>
  43.  
  44.   <tr>
  45.     <td>2</td>
  46.     <td>6</td>
  47.     <td>10</td>
  48.     <td>long</td>
  49.   </tr>
  50.  
  51.   <tr>
  52.     <td>3</td>
  53.     <td>7</td>
  54.     <td>11</td>
  55.     <td>long</td>
  56.   </tr>
  57.  
  58.    <tr>
  59.     <td>4</td>
  60.     <td>8</td>
  61.     <td>12</td>
  62.     <td>long</td>
  63.   </tr>
  64. </table>
  65.  
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement