Advertisement
xariaaaa

Pop Up CSS

Jan 11th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. *html #fade {
  2. position: absolute;
  3. }
  4. #fade {
  5. display: none;
  6. background: #000;
  7. position: fixed;
  8. left: 0;
  9. top: 0;
  10. width: 100%;
  11. height: 100%;
  12. opacity: .80;
  13. z-index: 9999;
  14. }
  15.  
  16. *html .popup_block {
  17. position: absolute;
  18. }
  19.  
  20. .popup_block{
  21. display: none;
  22. background: #FFFFFF;
  23. padding: 20px;
  24. float: left;
  25. position: fixed;
  26. top: 50%;
  27. left: 50%;
  28. z-index: 9999999999;
  29. }
  30.  
  31. img.btn_close {
  32. float: right;
  33. margin: -55px -55px 0 0;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement