Please tell me how to use css to achieve the effect after the following button is selected.

doesn"t have to be a button, it"s a square div

.
Mar.28,2021

background image is set to this


.wrapper{
    position: relative;
}
.wrapper::before{
    content: "\2713";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 100;
    color: -sharp72a9ed;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
}
.wrapper::after{
    content: '';
    position: absolute;
    right: 0;
    z-index: 10;
    width: 0;
    height: 0;
    bottom: 0;
    border-right: 15px solid -sharpfff;
    border-top: 10px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 10px solid -sharpfff;
}
Menu