欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

纯css实现步骤条

程序员文章站 2022-06-07 10:50:07
...

纯css实现步骤条

纯css写的步骤条直接上代码

 

  <ul class="steps">
    <li class="active"></li>
    <li ></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>

 

  /* 进度条 */
  .steps {position: relative;counter-reset: step; width: 840px; margin: 0 auto;margin-top: 20px;}
  .steps li {list-style-type: none;font-size: 12px;text-align: center;width: 20%;position: relative; color: #999;z-index: 2;float: left;}
  .steps li:before { display: block; content: counter(step);counter-increment: step; width:24px; height: 24px;background-color: #fff;line-height:24px;border-radius:50%;   font-size: 14px;color: #999;text-align: center;font-weight: 700;margin: 0 auto 8px auto; border: 1px #e5e5e5 solid}
  .steps li:after {content: '';width: 100%;height: 1px;background-color: #b3b3b3; position: absolute;left: 0;top: 15px; z-index: -1;}
  .steps li:first-child {z-index: 3;}
  .steps li:last-child { z-index: 1;}
  .steps li:first-child:after {width: 50%;left: 50%;}
  .steps li:last-child:after {width: 50%;}
  .steps li.active:before {color: #fff}
  .steps li.active:before, .steps li.active:after { background-color: #3277df;}

 

相关标签: html css css3