Advertisement
krphappyplace

pop up css

Feb 2nd, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #fade {
  2. display: none;
  3. background: #000;
  4. position: fixed;
  5. left: 0;
  6. top: 0;
  7. width: 100%;
  8. height: 100%;
  9. opacity: 0.5;
  10. z-index: 9999;}
  11.  
  12. .popup_block{
  13. display: none;
  14. background: transparent;
  15. padding: 20px;
  16. float: left;
  17. position: fixed;
  18. top: 50%;
  19. left: 50%;
  20. z-index: 99999;}
  21.  
  22. *html #fade {
  23. position: absolute;}
  24.  
  25. *html .popup_block {
  26. position: absolute;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement