4

我有一个看起来很简单的安排:UL 中的标签列表,最后一个列表项包含标签“其余”的绝对定位列表。

在此处查看精简演示:http: //dev.timmurtaugh.com/demo/chrome-problem/browse-bar-sandbox.html

在 Chrome(据我所知,只有 Chrome;版本 19.0.1084.56)中,绝对定位的列表与其下方的“仪器”标题重叠。

帮助!

4

1 回答 1

2

尝试将 z-index:999 添加到下面提到的类中:

.browseBar ul.tagList li.seeMore, .browseBar ul.tagList li.clearAll {
  position: relative;
  color: #C82D09;
  cursor: pointer;
  z-index: 999; /* Add This */
}
于 2012-06-26T16:55:42.057 回答