在css中使用边框做三角形

 1 .header_c .hea-top span{
 2     display: inline-block;
 3     width: 0;
 4     height: 0;
 5     border: 8px solid transparent;
 6     border-top-color: #333;
 7     /* 在位置上的小偏差移动 */
 8     position: relative;
 9     top: 5px;
10 }
原文地址:https://www.cnblogs.com/musong-out/p/15096304.html