1. 程式人生 > >::before 偽元素三角形

::before 偽元素三角形

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;
}