05-09-background-clip.html 930 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Background clip example</title>
  6. <style>
  7. body {
  8. padding: 2em;
  9. margin: 0;
  10. font-family: "Helvetica Neue", Arial, sans-serif;
  11. background-color: #fff;
  12. }
  13. /* this default box is the same as background-clip: border-box; */
  14. .profile-box {
  15. display: inline-block;
  16. height: 200px;
  17. width: 400px;
  18. background-position: 50% 50%;
  19. background-repeat: no-repeat;
  20. background-image: url(img/cat.jpg);
  21. border: 10px solid rgba(220, 220, 160, 0.5);
  22. padding: 10px;
  23. }
  24. .padding-box-clipped {
  25. background-clip: padding-box;
  26. }
  27. .content-box-clipped {
  28. background-clip: content-box;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="profile-box"></div>
  34. <div class="profile-box padding-box-clipped"></div>
  35. <div class="profile-box content-box-clipped"></div>
  36. </body>
  37. </html>