Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. /**
  2. * 弹层实现
  3. */
  4.  
  5. .dialog {
  6. width: 400px;
  7. height: 200px;
  8. background: #f06;
  9. background: linear-gradient(45deg, #f06, yellow);
  10. margin-top: 200px;
  11. }
  12.  
  13. .dialog:before {
  14. content: '';
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. right: 0;
  19. bottom: 0;
  20. background: rgba(0,0,0,.4);
  21. z-index: -1;
  22. }
Add Comment
Please, Sign In to add comment