Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <div class="extra"></div>
  2. <div id="wrapper">
  3. <div class="sticky">
  4. sticky
  5. </div>
  6. <div class='sticky sticky-subject'>sdjfnsa</div>
  7. </div>
  8. <div class="extra"></div>
  9.  
  10. .sticky {
  11. position: sticky;
  12. position: -webkit-sticky;
  13. background: #f83d23;
  14. width: 100px;
  15. height: 100px;
  16. top: 70px;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. box-shadow: 0 0 6px #000;
  21. color: #fff;
  22. z-index: 10;
  23. }
  24. .sticky-subject{
  25. z-index: 0;
  26. top: 170px;
  27. height: 300px;
  28. overflow: hidden;
  29. background-color: green;
  30. }
  31.  
  32. .extra,
  33. #wrapper {
  34. width: 75%;
  35. margin: auto;
  36. background-color: #ccc;
  37. margin-bottom: 60px;
  38. }
  39. #wrapper {
  40. height: auto;
  41. }
  42. .extra {
  43. height: 100px;
  44. }
  45. body {
  46. font-family: georgia;
  47. height: 1000px;
  48. }
  49. h4 {
  50. text-align: center;
  51. }
  52. @media (min-height: 768px) {
  53. #wrapper{
  54. height: 2000px;
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement