Advertisement
Guest User

css table td hover

a guest
Aug 28th, 2011
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.         <meta charset="utf-8" />
  5.         <title>untitled</title>
  6.         <!--[if IE]>
  7.                <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  8.        <![endif]-->
  9. <style>
  10. body {background-color: #ccc;}
  11. table.some_style td {
  12.     background-color: #0f0;
  13. }
  14. table.some_style td:hover {
  15.     background-color: #06c;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <table class="some_style">
  21.     <thead>
  22.         <tr>
  23.             <th>column one</th>
  24.                         <th>column two</th>
  25.                                     <th>column three</th>
  26.         </tr>
  27.     </thead>
  28.     <tbody>
  29.         <tr>
  30.             <td>data one</td>
  31.                         <td>data two</td>
  32.                                     <td>data three</td>
  33.         </tr>
  34.     </tbody>
  35. </table>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement