Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <style type="text/css">
  5. div {
  6. width: 200px;
  7. height: 200px;
  8. display: block;
  9. position: relative;
  10. }
  11.  
  12. div:after {
  13. content: "";
  14. background: url(http://subtlepatterns.com/patterns/bo_play_pattern.png);
  15. opacity: 0.5;
  16. top: 0;
  17. left: 0;
  18. bottom: 0;
  19. right: 0;
  20. position: absolute;
  21. z-index: -1;
  22. }
  23. body {
  24. background: url(http://subtlepatterns.com/patterns/tileable_wood_texture.png);
  25. }
  26.  
  27. div {
  28. width: 200px;
  29. height: 200px;
  30. display: block;
  31. position: relative;
  32.  
  33. /* DECORATION */
  34. border: 1px solid #000;
  35. text-align: center;
  36. font-family: Tahoma;
  37. margin: 20px auto;
  38. }
  39.  
  40. div:after {
  41. background: url(http://subtlepatterns.com/patterns/bo_play_pattern.png);
  42. opacity: .5;
  43.  
  44. width: 200px;
  45. height: 200px;
  46. top: 0;
  47. left: 0;
  48. position: absolute;
  49. z-index: -1;
  50. content: "";
  51. }
  52. </style>
  53. </head>
  54.  
  55. <body>
  56.  
  57. <div>
  58.  
  59. Box-shadowed element
  60.  
  61. </div>
  62.  
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement