Advertisement
pusatdata

CSS: Image Rounded Corner (BORDER+SHADOW)

Jul 25th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <head>
  2. <style>
  3. .outer {
  4. width: 150px;
  5. height: 150px;
  6. -webkit-box-shadow: 0px 0px 10px #4d4d4d;
  7. -moz-box-shadow: 0px 0px 10px #4d4d4d;
  8. box-shadow: 0px 0px 10px #4d4d4d;
  9. -webkit-border-radius: 8px;
  10. -moz-border-radius: 1px;
  11. -khtml-border-radius: 8px;
  12. border-radius: 100px;
  13. border:solid white 1px;
  14. overflow: hidden;
  15. padding: 1px;
  16. }
  17. .image {
  18. background: white;
  19. padding: 0;
  20. -webkit-border-radius: 8px;
  21. -moz-border-radius: 8px;
  22. -khtml-border-radius: 8px;
  23. border-radius: 100px;
  24. width: 150px;
  25. height: 150px;
  26. overflow: hidden;
  27. }
  28. </style>
  29. </head>
  30.  
  31.  
  32. <body>
  33. <div class="outer">
  34. <div class="image">
  35. <img src="https://www.selasar.com/files/teaser-alfan.jpg" />
  36. </div>
  37. </div>
  38. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement