Advertisement
danrim

Main Circle and inside one more circle

May 22nd, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. HTML
  2. <body>
  3.   <div class="a">
  4.     <div class="b">
  5.       <div class="c">
  6.       Content
  7.         </div>
  8.     </div>
  9.   </div>  
  10. </body>
  11.  
  12. CSS
  13.  
  14. body {
  15.   background: linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
  16.   height: 1000px;
  17. }
  18.  
  19. .a {
  20.   height: 100px;
  21.   width: 100px;
  22.   border: 1px solid black;
  23.   border-radius: 100%;
  24.   padding: 0px;
  25.   display:flex;
  26.  
  27. }
  28.  
  29. .b {
  30.   height: 90px;
  31.   width: 90px;
  32.   border: 1px solid black;
  33.   border-radius: 100%;
  34. /*   padding: 5px; */
  35.   margin: auto;
  36.   display:flex;
  37. }
  38. .c {
  39.   color: white;
  40.   margin: auto;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement