Guest User

Untitled

a guest
Jan 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <a>The_button</a>
  2. <div style="position:absolute">
  3. <div style="position:relative" class="inner-box">
  4. Content
  5. Content
  6. Content
  7. Content
  8. Content
  9. </div>
  10. </div>
  11.  
  12. <div class=outer-box>
  13. The Button
  14. <div class=inner-box>
  15. </div>
  16. </div>​
  17.  
  18. .outer-box {
  19. position: relative;
  20. }
  21.  
  22. .inner-box {
  23. position: absolute;
  24. /* align bottom-right with offsetParent's top-left */
  25. bottom: 100%;
  26. right: 100%;
  27. width: 100px; /* fixed width, else contents will shrink */
  28. }
Add Comment
Please, Sign In to add comment