zl程序教程

您现在的位置是:首页 >  其它

当前栏目

::before 伪元素三角

元素 before 三角
2023-09-27 14:22:16 时间
ul::before{
content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #fff;
    top: -17px;
    right: 6px;
    position: absolute;
    pointer-events: none;
}