image.png

    1. <style>
    2. .container {
    3. width: 200px;
    4. height: 200px;
    5. border: 1px solid #000;
    6. border-radius: 10px;
    7. background: white;
    8. padding: 45px;
    9. display: flex;
    10. justify-content: space-between;
    11. }
    12. .dot {
    13. width: 50px;
    14. height: 50px;
    15. background: black;
    16. border-radius: 100%;
    17. }
    18. .dot:nth-of-type(2) {
    19. align-self: center;
    20. }
    21. .dot:nth-of-type(3) {
    22. align-self: flex-end;
    23. }
    24. </style>
    25. <body>
    26. <div class="container">
    27. <div class="dot"></div>
    28. <div class="dot"></div>
    29. <div class="dot"></div>
    30. </div>
    31. </body>