Guest User

Untitled

a guest
Sep 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. /* Scrollbars affecting width specified as percentage.
  2. Trying to find the least evil fix. */
  3. .something {
  4. height: 40px;
  5. }
  6.  
  7. .headershrinker {
  8. width: 100%;
  9. padding-right: 14px;
  10. }
  11.  
  12. .outer {
  13. position: relative;
  14. width: 80%;
  15. background-color: #eec;
  16. }
  17.  
  18. .cell {
  19. background-color: #cec;
  20. float: left;
  21. width: 33.333333333333%;
  22. display: block;
  23. }
  24.  
  25. .header {
  26. height: 3em;
  27. overflow: hidden;
  28. width: 100%;
  29. }
  30.  
  31. .body {
  32. width: 100%;
  33. }
  34.  
  35. .b1 {
  36. height: 4em;
  37. overflow-y: scroll;
  38. }
  39.  
  40. * {
  41. box-sizing: border-box;
  42. color: blue;
  43. }
Add Comment
Please, Sign In to add comment