zoukankan      html  css  js  c++  java
  • css实现竖向步骤条

     <div class="contract-operate_recodeMain">
                    <ul class="contract-operate_recode_date">
                      <li>
                        <span class="operate-date">2019-01-04 11:14:21</span>
                        <i></i>
                        <span class="operate-des">标准单次合同生成,待我方签章</span>
                      </li>
                      <li>
                        <span>2019-01-05 13:22:32</span>
                        <i></i>
                        <span>文件1我方签章 操作人:李莲</span>
                      </li>
                      <li>
                        <span>2019-01-08 16:02:02</span>
                        <i></i>
                        <span>文件1对方签章 操作人:王二</span>
                      </li>
                      <li>
                        <span>2019-01-10 10:11:21</span>
                        <i></i>
                        <span>文件1合同签署完成</span>
                      </li>
                    </ul>
                </div>
     
     
     
    css
     
    .contract-operate_recode_date{
    margin-left: 56px;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    li{
    100%;
    :nth-child(1){
    119px;
    height:16px;
    font-size: 12px;
    color: #333333;
    }
    :nth-child(2){
    display: inline-block;
    8px;
    height: 8px;
    background-color: #D8D8D8;
    border-radius: 50%;
    margin: 0 50px;
    &:after {
    content: '';
    display: block;
    clear: both;
    1px;
    height: 38px;
    background-color: #D8D8D8;
    margin: 8px auto;
    }
    }
    :nth-child(3){
    font-size: 12px;
    color: #333333;
    display: inline-block;
    170px;
    height: 16px;
    }
    }
    li:last-child {
    :nth-child(1) {
    font-size: 12px;
    color: #09B9C1;
    display: inline-block;
    119px;
    height: 16px;
    }
    :nth-child(2) {
    display: inline-block;
    8px;
    height: 8px;
    background-color: $c991;
    border-radius: 50%;
    &:after {
    content: '';
    display: none;
    }
    }
     
    :nth-child(3) {
    font-size: 12px;
    color: $c991;
    letter-spacing: 0;
    display: inline-block;
    170px;
    height: 16px;
    }
    }
    }
    }
     
  • 相关阅读:
    根据excel表格中的某一列内容,使用python将其拆分成多个excel表格
    Python操作excel
    opensips(三):load_balancer与NAT
    opensips(二):NAT官方脚本
    sip头域
    OPensips(一):NAT例子
    四、word2vec + siameseLSTM改进(1)
    三、word2vec + siameseLSTM
    二、LSTM处理不定长句子
    一、word2vec的使用
  • 原文地址:https://www.cnblogs.com/binglove/p/10677970.html
Copyright © 2011-2022 走看看