首页 > 其他 > 详细

虚线平铺 通屏

时间:2017-09-18 23:46:42      阅读:242      评论:0      收藏:0      [点我收藏+]

 

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

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

技术分享

 

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

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

<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{
width: 80%;
margin: 10px auto;
position: relative;
}
.dashed-list li{
position: relative;
width: 100%;
height: 35px;
}
.dashed-list li:before{
z-index: 5;
position: absolute;
top:14px;
left: 0;
display: block;
content: "";
width:100%;
height: 1px;
border-bottom: 1px #000 dashed;
}
.dashed-list .text-lt{
top: 0;
left: 0;
width: 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

虚线平铺 通屏

原文:http://www.cnblogs.com/leshao/p/7545641.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!