CSS Box / shadow重叠问题z-index

时间:2013-11-26 03:57:03

标签: html css css3 css-float

请查看代码段:http://codepen.io/anon/pen/JItLa

我正在尝试连续显示包含不同数量项目的2行块。 悬停事件应该显示CSS阴影,但是存在一个问题:阴影的右边界与下一个块重叠。 你会说这里可能的解决方案是使用display:inline-block留下块之间的间隙,但我不需要间隙。这些块应该保持彼此粘性,但正确的阴影应该与下一个块重叠。

html,
body {
  margin: 0;
  padding: 0
}
.wrapper {
  width: 100%;
  margin-top: 20px
}
.tile,
.tile2 {
  float: left;
  background: #f2f2f2
}
.tile {
  width: 25%
}
.tile2 {
  width: 33.3%;
  border-left: 1px solid #ddd
}
.tile:hover,
.tile2:hover {
  -webkit-box-shadow: 0 0 2px rgba(255, 255, 190, .75), 0 0 23px 1px #000;
  -moz-box-shadow: 0 0 2px rgba(255, 255, 190, .75), 0 0 23px 1px #000;
  box-shadow: 0 0 2px rgba(255, 255, 190, .75), 0 0 23px 1px #000
}
.header {
  padding: 20px 0px 10px;
  text-align: center
}
.clear {
  clear: both
}
<div class="wrapper">
  <div class="tile">
    <div class="header">some text</div>
  </div>
  <div class="tile">
    <div class="header">some text</div>
  </div>
  <div class="tile">
    <div class="header">some text</div>
  </div>
  <div class="tile">
    <div class="header">some text</div>
  </div>
  <div class="clear"></div>
</div>
<div class="wrapper">
  <div class="tile2">
    <div class="header">some text</div>
  </div>
  <div class="tile2">
    <div class="header">some text</div>
  </div>
  <div class="tile2">
    <div class="header">some text</div>
  </div>
  <div class="clear"></div>
</div>

这怎么可能?

这里还有另一个问题:当我在块之间添加边框时,最后一个块移动到下一行,这是不正常的。请参阅上面给出的示例中的第2行。

2 个答案:

答案 0 :(得分:13)

在悬停时向元素添加 z-index

此外,还必须定位该元素,以便 z-index 属性能够正常工作。因此,也要添加position:relative

  

9.9.1 Specifying the stack level: the 'z-index' property

     

z-index:适用于:定位元素

     

每个方框都有三个位置。除了它们的水平和垂直位置之外,盒子沿着“z轴”放置并且一个在另一个上面格式化。当盒子在视觉上重叠时,Z轴位置特别相关。本节讨论如何沿z轴定位框。

Updated Codepen - 现在有效。

.tile:hover, .tile2:hover {
    z-index: 1;
    position: relative;
}

要解决第二个问题,元素会显示在新行上,因为它们的宽度不会相加,因为边框会导致1px关闭。

33.3% + 33.3% + 33.3% + 1px!= 100%

您有几种不同的选择:

  • 使用calc()从宽度中减去1px - width: calc(33.3% - 1px)

  • 更改框模型以在元素的宽度计算中包含边框 - box-sizing

如果您选择使用 box-sizing ,则需要适当的供应商/ prexes,如果您希望在所有浏览器中提供支持。我会使用类似的东西:

.tile2 {
    width: 33.3%;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

Updated Codepen使用 box-sizing

答案 1 :(得分:0)

如果您不需要div之间的差距,请添加以下CSS。

.wrapper {
  text-align: center;
  font-size: 0px;
}
.tile,
.tile2 {
  display: inline-block;
}
.tile:hover,
.tile2:hover {
  z-index: 1;
  position: relative;
}
.header {
  font-size: 12px;
}
`