css画一个三角形

113 阅读1分钟
    p {
        width: 0;
        height: 0;
        border-width: 10px;
        border-style: solid;
        border-color:red transparent  transparent transparent;
        transform: rotate(90deg);
        /*顺时针旋转90°*/
    }