Advertisement
pusatdata

CSS: Image Rounded Corner (SIMPLE)

Jul 25th, 2015
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <head>
  2.  
  3. <style>
  4. p{
  5. font-family: sans-serif;
  6. }
  7.  
  8. .rounded-corners {
  9. border-radius: 100px;
  10. }
  11.  
  12. .rounded-corners-2{
  13. border-radius: 100px;
  14. height: 150px;
  15. width: 150px;
  16. }
  17. </style>
  18.  
  19. </head>
  20.  
  21.  
  22. <body>
  23. <img src="https://www.selasar.com/files/teaser-alfan.jpg" class="" width="200">
  24. <p>Asli <p>
  25.  
  26. <img src="https://www.selasar.com/files/teaser-alfan.jpg" class="rounded-corners" width="200">
  27. <p>Asli dengan Rounded Corner!<p>
  28.  
  29. <img src="https://www.selasar.com/files/teaser-alfan.jpg" class="rounded-corners-2" width="200">
  30. <p>Image Diperkecil dengan Rounded Corner!<p>
  31. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement