cp_table_css

CP How do I change the text in the table header

by bryiantan

HTML

<html>
   <head>
   <style>
       </style>
     </head>
     <body>
       <table>
         <thead>
           <tr><th>Rank</th><th>Name</th></tr>
         </thead>
         <tbody>
           <tr><td>1.</td><td>New York</td></tr>
           <tr><td>2.</td><td>Los Angeles</td></tr>
           <tr><td>3.</td><td>Chicago</td></tr>
           <tr><td>4.</td><td>Houston</td></tr>
           <tr><td>5.</td><td>Virginia</td></tr>
         </tbody>
       </table>
     </body>
   </html>

CSS

th {color:#808080;}
tbody td:first-child {
    font-weight:bold;
}
tbody tr:nth-child(odd) {background: #808080; color:#fff}