https://i.sstatic.net/HUyIV.png
Can anyone help me create a left-pointing arrow on a white background? I've tried using the following CSS, but it only gives me a single color border.
.white-box{
padding: 20px;
background: #fff;
}
.white-box:after,white-box:before{
right: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.white-box:after {
border-color: rgba(136, 183, 213, 0);
border-right-color: #88b7d5;
border-width: 30px;
margin-top: -30px;
}
.white-box:before {
border-color: rgba(194, 225, 245, 0);
border-right-color: #c2e1f5;
border-width: 36px;
margin-top: -36px;
}