Question:
I am interested in creating a left-pointing arrow with a grey border. Currently, I have only managed to create a grey arrow without a border. Is there any way I can achieve this?
Attached is a picture to illustrate what I'm looking for. Any suggestions or ideas would be greatly appreciated. Thank you!
.tri {
width: 0;
height: 0;
border-style: solid;
border-width: 20px;
}
.tri{
border-color: transparent #ccc transparent transparent;
}
<div class="tri"></div>