为什么Chrome不在列表中显示#

时间:2016-04-15 18:12:38

标签: html css

我有一个reset.css文件,可以清除任何类型或填充的所有列表。我通常不希望这样。在一个案例中,我这样做。它在FF中工作,但不在Chrome中。如果我删除float: left,则显示小数。错误或功能还是什么?

标记是这样的:

<ol class="tab-group">
  <li class="tab">An Item</li>
  <li class="tab">Another Item</li>
</ol>

CSS就是这样:

li.tab {
  padding: 10px;
  border-top: solid 1px #CCC;
  border-left: solid 1px #CCC;
  background-color: #CCC;
  float: left;
  list-style-type: decimal;
  list-style-position: inside;
  display: list-item;
  cursor: pointer;
}

1 个答案:

答案 0 :(得分:0)

这是Chrome 49中的一个错误。更新到50只是修复了它。什么时间。