CSS写右箭头

参考的网上的,自己做了点修改

.right-arrow{
        content: " ";
        height: 10px;
        width: 10px;
        border-width: 1.5px 1.5px 0 0;
        border-color: #fff;
        border-style: solid;
        transform: rotate(45deg);
        position: absolute;
        top: 27%;
        right: 3.8%;
    }

<i class="right-arrow"></i>
发布了32 篇原创文章 · 获赞 3 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_40088443/article/details/88694864