image.png image.png

    1. filter: drop-shadow(8px 8px 5px rgba(0,0,0,.5));
    2. .box{
    3. margin: 100px;
    4. width: 200px;
    5. height: 100px;
    6. background-color: pink;
    7. /* border: 5px dotted orangered; */
    8. filter: drop-shadow(8px 8px 5px rgba(0,0,0,.5));
    9. position: relative;
    10. }
    11. .box::after{
    12. display: block;;
    13. content: "";
    14. width: 0px;
    15. height: 0px;
    16. position: absolute;
    17. border: 20px solid transparent;
    18. border-left-color: pink;
    19. right: -40px;
    20. top: 30px;
    21. }
    22. .xbox{
    23. width: 200px;
    24. height: 100px;
    25. /* background:lightsalmon; */
    26. border: 15px dotted lightskyblue;
    27. filter: drop-shadow(2px 2px 10px rgba(0,0,0,.5));
    28. }