Can you help me troubleshoot why my css triangle isn't displaying before my span? I've tried everything but it just won't show up.
.triangle:before {
width: 0;
height: 0;
border-top: 3px solid transparent;
border-right: 6px solid green;
border-bottom: 3px solid transparent;
right: 100%;
top: 0%;
position: absolute;
clear: both;
}
.triangle {
position: relative;
}
<span class="triangle">Hello</span>