Advertisement
8u

table cell testing html

8u
Aug 19th, 2021
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.97 KB | None | 0 0
  1. <!-- dummy file -->
  2. <style>
  3. table.GeneratedTable {
  4.   width: 100%;
  5.   background-color: #ffffff;
  6.   border-collapse: collapse;
  7.   border-width: 2px;
  8.   border-color: #01c7fc;
  9.   border-style: groove;
  10.   color: #5c5c5c;
  11. }
  12.  
  13. table.GeneratedTable td, table.GeneratedTable th {
  14.   border-width: 2px;
  15.   border-color: #01c7fc;
  16.   border-style: groove;
  17.   padding: 3px;
  18. }
  19.  
  20. table.GeneratedTable thead {
  21.   background-color: #52d6fc;
  22. }
  23. </style>
  24.  
  25. <!-- dummy file -->
  26. <table class="GeneratedTable">
  27.   <thead>
  28.     <tr>
  29.       <th>Test</th>
  30.       <th>Test</th>
  31.     </tr>
  32.   </thead>
  33.   <tbody>
  34.     <tr>
  35.       <td>Test</td>
  36.       <td>Test</td>
  37.     </tr>
  38.     <tr>
  39.       <td>Test</td>
  40.       <td>Test</td>
  41.     </tr>
  42.     <tr>
  43.       <td>Test</td>
  44.       <td>Test</td>
  45.     </tr>
  46.     <tr>
  47.       <td>Test</td>
  48.       <td>@#$&*()’l,.</td>
  49.    </tr>
  50.    <tr>
  51.      <td>1234567890</td>
  52.      <td>abcdefghijklmnopqrstuvwxyz</td>
  53.    </tr>
  54.  </tbody>
  55. </table>
  56. <!--8u testing -->
  57.  
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement