css实现向右箭头
html部分
<text class="gl"></text>
css部分
.gl{
width: 6px;
height: 6px;
border-left: 1px solid #999;
border-bottom: 1px solid #999;
transform: translate(0,0) rotate(-135deg);
margin-left: auto;
}
html部分
<text class="gl"></text>
css部分
.gl{
width: 6px;
height: 6px;
border-left: 1px solid #999;
border-bottom: 1px solid #999;
transform: translate(0,0) rotate(-135deg);
margin-left: auto;
}