zoukankan      html  css  js  c++  java
  • 虚线平铺 通屏

    日常项目中,遇到列表有虚线的情况

    ==================================================================

    =======================================================================

    一行文字后面有虚线,占位不下,则显示 省略号,但是后面还需要显示 虚线 

    <ul class="dashed-list">
       <li>
             <span class="span-text text-lt">201年06月28日 系统停机升级</span>
             <span class="span-text text-rt">201-06-06 10:08:09</span>
    </li>

    ==================================================================

    /*各个部分样式*/

    @charset "utf-8";
    .dashed-list{
    80%;
    margin: 10px auto;
    position: relative;
    }
    .dashed-list li{
    position: relative;
    100%;
    height: 35px;
    }
    .dashed-list li:before{
    z-index: 5;
    position: absolute;
    top:14px;
    left: 0;
    display: block;
    content: "";
    100%;
    height: 1px;
    border-bottom: 1px #000 dashed;
    }
    .dashed-list .text-lt{
    top: 0;
    left: 0;
    60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    .dashed-list .text-rt{
    top: 0;
    right: 0;
    }
    .dashed-list .span-text{
    z-index: 6;
    display: block;
    position: absolute;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    color: #333;
    background: #FFFFFF;
    }

    ============================================================

    这样既可实现

    感谢 面包 

    下载地址:https://files.cnblogs.com/files/leshao/%E8%99%9A%E7%BA%BF-ok.rar

  • 相关阅读:
    数据结构之排序查找算法
    Spring3之IOC
    SQL使用范例
    数据结构之链表操作
    VI的使用
    数据结构之树的操作
    Hibernate学习笔记
    Spring3之AOP
    01.由一个程序开始(一)
    Linux的档案权限及目录配置(一) (2)
  • 原文地址:https://www.cnblogs.com/leshao/p/7545641.html
Copyright © 2011-2022 走看看