CSS实现箭头流程

 
  • 终端设备接入
  • 节目制作
  • 一键发布节目

把开头和结尾的稍微修饰一下。

.cssNav li:first-child{    
    border-radius: 4px 0 0 4px;    
    padding-left: 25px;  
}    
.cssNav li:last-child,.cssNavEnd{    
    border-radius: 0px 4px 4px 0px;    
    padding-right: 25px;  
}    
.cssNav li:first-child:before{    
    display: none;    
}    
.cssNav li:last-child:after,.cssNavEnd:after{    
    display: none;    
}

加上选中状态即可。

.cssNav li.active {  
    background-color: #ef72b6;  
}  
.cssNav li.active:after {  
    border-left-color: #ef72b6;  
}

效果:

CSS实现箭头流程_第1张图片

 

你可能感兴趣的:(css)