Advertisement
Guest User

Untitled

a guest
May 26th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <table>
  2. <thead>
  3. <tr>
  4. <th>Code</th>
  5. <th>Company</th>
  6. <th class="numeric">Price</th>
  7. <th class="numeric">Change</th>
  8. <th class="numeric">Change %</th>
  9. <th class="numeric">Open</th>
  10. <th class="numeric">High</th>
  11. <th class="numeric">Low</th>
  12. <th class="numeric">Volume</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr>
  17. <td>AAC</td>
  18. <td>AUSTRALIAN AGRICULTURAL COMPANY LIMITED.</td>
  19. <td class="numeric">$1.38</td>
  20. <td class="numeric">-0.01</td>
  21. <td class="numeric">-0.36%</td>
  22. <td class="numeric">$1.39</td>
  23. <td class="numeric">$1.39</td>
  24. <td class="numeric">$1.38</td>
  25. <td class="numeric">9,395</td>
  26. </tr>
  27. </tbody>
  28. </table>
  29.  
  30. @media only screen and (max-width: 800px) {
  31. #unseen table td:nth-child(2),
  32. #unseen table th:nth-child(2) {display: none;}
  33. }
  34.  
  35. @media only screen and (max-width: 640px) {
  36. #unseen table td:nth-child(4),
  37. #unseen table th:nth-child(4),
  38. #unseen table td:nth-child(7),
  39. #unseen table th:nth-child(7),
  40. #unseen table td:nth-child(8),
  41. #unseen table th:nth-child(8){display: none;}
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement