加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 资源网站 > 资源 > 正文

html – 带有文本椭圆的编号列表也隐藏了订单号

发布时间:2020-12-14 22:40:52 所属栏目:资源 来源:网络整理
导读:我正在使用文本椭圆的ol列表,但是当我添加overflow:hidden;属性它也隐藏数字顺序. 我如何使用文本椭圆并保持数字可见 CodePen .wrapper{width:300px; background-color:#ccc; padding:10px;}.tab-ol li { list-style-position:inside; white-space: nowrap;

我正在使用文本椭圆的ol列表,但是当我添加overflow:hidden;属性它也隐藏数字顺序.

我如何使用文本椭圆并保持数字可见

CodePen

.wrapper{width:300px; background-color:#ccc; padding:10px;}
.tab-ol li { 
list-style-position:inside;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;  
}
.ol-2 li{
  list-style-position:inside;
  white-space: nowrap;
  overflow: hidden ;
  text-overflow: ellipsis;  
}
ol {
	counter-reset:li; /* Initiate a counter */
	margin-left:0; /* Remove the default left margin */
	padding-left:0; /* Remove the default left padding */
}
ol > li {
	position:relative; /* Create a positioning context */
	margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
	padding:4px 8px; /* Add some spacing around the content */
	list-style:none; /* Disable the normal item numbering */
	border-top:0px solid #666;
	background:#f6f6f6;
}
ol > li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
	position:absolute;
	top:-2px;
	left:-2em;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	width:2em;
	/* Some space between the number and the content in browsers that support
	   generated content but not positioning it (Camino 2 is one example) */
	margin-right:8px;
	padding:4px;
	border-top:0px solid #666;
	color:#fff;
	background:#666;
	font-weight:bold;
	/* font-family:"Helvetica Neue",Arial,sans-serif; */
	text-align:center;
}
li ol,li ul {margin-top:6px;}
ol ol li:last-child {margin-bottom:0;}
最佳答案
用padding替换margin并在li里面输入数字:

.wrapper {
  width: 300px;
  background-color: #ccc;
  padding: 10px;
}

.tab-ol li {
  list-style-position: inside;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

ol {
  counter-reset: li;
  margin-left: 0;
  padding-left: 0;
}

ol>li {
  position: relative;
  margin: 0 0 6px 0;/*remove the margin here*/
  padding: 4px 8px 4px 2.1em;/* Add the padding here*/
  list-style: none;
  border-top: 0px solid #666;
  background: #f6f6f6;
}

ol>li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  top: 0;
  left: 0;/*adjust the new position*/
  box-sizing: border-box;
  width: 2em;
  padding: 4px;
  border-top: 0px solid #666;
  color: #fff;
  background: #666;
  font-weight: bold;
  text-align: center;
}

li ol,li ul {
  margin-top: 6px;
}

ol ol li:last-child {
  margin-bottom: 0;
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读