Advertisement
ADL_Rodrigo_Silva

Untitled

Apr 13th, 2022
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.68 KB | None | 0 0
  1. /*
  2. div {
  3.     border:10px solid #3EC483;
  4.     background: #5DEAA8;
  5.     height: 100px;
  6.     width: 200px;
  7.     padding: 10px;
  8.     margin: 10px;
  9. }
  10. */
  11.  
  12. .div1 {
  13.     background: #5DEAA8;
  14.     height: 100px;
  15.     width: 200px;
  16.     border-top-left-radius: 10%;
  17.     border-top-right-radius: 20%;
  18.     border-bottom-left-radius: 30%;
  19.     border-bottom-right-radius: 50%;
  20.     border: solid #5B6DCD 5px;
  21.     margin: 40px;
  22.     padding: 5px;
  23.     box-sizing: border-box;
  24.     position: relative;
  25.     top: 100px;
  26. }
  27.  
  28. .div2 {
  29.     border: 10px solid #3EC483;
  30.     background: #5DEAA8;
  31.     height: 100px;
  32.     width: 200px;
  33.     padding: 20px 50px 60px 40px;
  34.     margin: 40px 30px 70px 30px;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement