其他分享
首页 > 其他分享> > css绘制三角箭头

css绘制三角箭头

作者:互联网

.arrawLine{
    height: 42px;
    padding-top: 12px;
}
.arrawLine .arraw1{
    display: inline-block;
    width: 150px;
    height: 6px;
    background: #e4e4e4;
}
.arrawLine .arraw2{
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #e4e4e4;
    position: absolute;
    top: 13px;
    left: 150px;
}

 

标签:width,绘制,height,箭头,8px,arrawLine,border,transparent,css
来源: https://www.cnblogs.com/cx709452428/p/14342585.html