Guest User

Untitled

a guest
Nov 17th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <div class="container">
  2. <div class="top"></div>
  3. <div>
  4. <img src="//via.placeholder.com/400x200">
  5. </div>
  6. <div class="bottom"></div>
  7. </div>
  8.  
  9. .container {
  10. position: relative;
  11. width: 400px;
  12. }
  13. .top {
  14. position: absolute;
  15. top: 0;
  16. border-radius: 0% 0% 100% 100%/0% 0% 200% 200%;
  17. background-color: blue;
  18. width: 100%;
  19. z-index: 10;
  20. height: 20px;
  21. }
  22. div.img {
  23. z-index: 1;
  24. }
  25. .bottom {
  26. position: absolute;
  27. bottom: 0;
  28. background-color: red;
  29. width: 100%;
  30. height: 20px;
  31. z-index: 10;
  32. border-radius: 100% 100% 0% 0% / 200% 200% 0% 0%;
  33. }
Add Comment
Please, Sign In to add comment