Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.08 KB | None | 0 0
  1. <table class="table">
  2. <thead>
  3. <tr class="table__row table__row_header">
  4. <th class="table__cell table__cell_header">title 1</th>
  5. <th class="table__cell table__cell_header">title 2</th>
  6. <th class="table__cell table__cell_header">title 3</th>
  7. <th class="table__cell table__cell_header">title 4</th>
  8. <th class="table__cell table__cell_header">title 5</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <tr class="table__row table__row_body">
  13. <td class="table__cell table__cell_body">
  14. <span class="table__content">text 11</span>
  15. </td>
  16. <td class="table__cell table__cell_body">
  17. <span class="table__content">text 12</span>
  18. </td>
  19. <td class="table__cell table__cell_body">
  20. <div class="table__content">text 13</div>
  21. </td>
  22. <td class="table__cell table__cell_body">
  23. <div class="table__content">text 14</div>
  24. </td>
  25. <td class="table__cell table__cell_body">
  26. <span class="table__content">text 15</span>
  27. </td>
  28. </tr>
  29.  
  30. <tr class="table__row table__row_body">
  31. <td class="table__cell table__cell_body">
  32. <span class="table__content">text 21</span>
  33. </td>
  34. <td class="table__cell table__cell_body">
  35. <span class="table__content">text 22</span>
  36. </td>
  37. <td class="table__cell table__cell_body">
  38. <div class="table__content">text 23</div>
  39. </td>
  40. <td class="table__cell table__cell_body">
  41. <div class="table__content">text 24</div>
  42. </td>
  43. <td class="table__cell table__cell_body">
  44. <span class="table__content">text 25</span>
  45. </td>
  46. </tr>
  47.  
  48. <tr class="table__row table__row_body">
  49. <td class="table__cell table__cell_body">
  50. <span class="table__content">text 31</span>
  51. </td>
  52. <td class="table__cell table__cell_body">
  53. <span class="table__content">text 32</span>
  54. </td>
  55. <td class="table__cell table__cell_body">
  56. <div class="table__content">text 33</div>
  57. </td>
  58. <td class="table__cell table__cell_body">
  59. <div class="table__content">text 34</div>
  60. </td>
  61. <td class="table__cell table__cell_body">
  62. <span class="table__content">text 35</span>
  63. </td>
  64. </tr>
  65.  
  66. <tr class="table__row table__row_body">
  67. <td class="table__cell table__cell_body">
  68. <span class="table__content">text 41</span>
  69. </td>
  70. <td class="table__cell table__cell_body">
  71. <span class="table__content">text 42</span>
  72. </td>
  73. <td class="table__cell table__cell_body">
  74. <div class="table__content">text 43</div>
  75. </td>
  76. <td class="table__cell table__cell_body">
  77. <div class="table__content">text 44</div>
  78. </td>
  79. <td class="table__cell table__cell_body">
  80. <span class="table__content">text 45</span>
  81. </td>
  82. </tr>
  83.  
  84. <tr class="table__row table__row_body">
  85. <td class="table__cell table__cell_body">
  86. <span class="table__content">text 51</span>
  87. </td>
  88. <td class="table__cell table__cell_body">
  89. <span class="table__content">text 52</span>
  90. </td>
  91. <td class="table__cell table__cell_body">
  92. <div class="table__content">text 53</div>
  93. </td>
  94. <td class="table__cell table__cell_body">
  95. <div class="table__content">text 54</div>
  96. </td>
  97. <td class="table__cell table__cell_body">
  98. <span class="table__content">text 55</span>
  99. </td>
  100. </tr>
  101. </tbody>
  102. </table>
  103.  
  104. .table {
  105. overflow: hidden;
  106. width: 80%;
  107. margin: 5px auto 5px auto;
  108. font-size: 16px;
  109. cursor: default;
  110. }
  111.  
  112. .table__row {
  113. position: relative;
  114. }
  115.  
  116. .table__row_body:nth-child(even) {
  117. background-color: darkgrey;
  118. }
  119.  
  120. .table__row_body:nth-child(odd) {
  121. background-color: lightgrey;
  122. }
  123.  
  124. .table__cell {
  125. position: relative;
  126. padding: 10px;
  127. border: 10px solid cadetblue;
  128. border-collapse: collapse;
  129. }
  130.  
  131. .table__cell_header {
  132. z-index: 20;
  133. background-color: darkslategrey;
  134. color: white;
  135. }
  136.  
  137. .table__cell_body:hover:after {
  138. position: absolute;
  139. z-index: 10;
  140. top: -5000px;
  141. left: 0;
  142. width: 100%;
  143. height: 10000px;
  144. content: "";
  145. background-color: lightyellow;
  146. }
  147.  
  148. .table__row_body:hover .table__cell_body {
  149. background-color: lightgoldenrodyellow;
  150. }
  151.  
  152. .table__content {
  153. position: relative;
  154. z-index: 20;
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement