扩展问题 css div
problems with an expanding css div
我有在悬停事件时展开的图块,但它们的一部分被相邻的图块覆盖,我该如何解决这个问题?
css 代码片段:
.tile {
position: absolute;
width: 86px;
background-color: #000000;
height: 86px;
color: #fff;
transition: 1s linear all;
overflow: hidden;
}
.tile:hover {
background-color: #333333;
height: 172px;
width: 172px;
}
这里是 link 我的 fiddle: https://jsfiddle.net/zjcfope1/
将 z-index
添加到磁贴 class。查看更新后的 fiddle
.tile {
position: absolute;
width: 86px;
background-color: #000000;
height: 86px;
color: #fff;
transition: 1s linear all;
overflow: hidden;
z-index: -9999;
}
.tile:hover {
background-color: #333333;
height: 172px;
width: 172px;
z-index: 9999;
}
这是你想要的就试试吧。
.tile:hover {
background-color: #333333;
height: 172px;`
width: 172px;
z-index:1000;
}
我有在悬停事件时展开的图块,但它们的一部分被相邻的图块覆盖,我该如何解决这个问题?
css 代码片段:
.tile {
position: absolute;
width: 86px;
background-color: #000000;
height: 86px;
color: #fff;
transition: 1s linear all;
overflow: hidden;
}
.tile:hover {
background-color: #333333;
height: 172px;
width: 172px;
}
这里是 link 我的 fiddle: https://jsfiddle.net/zjcfope1/
将 z-index
添加到磁贴 class。查看更新后的 fiddle
.tile {
position: absolute;
width: 86px;
background-color: #000000;
height: 86px;
color: #fff;
transition: 1s linear all;
overflow: hidden;
z-index: -9999;
}
.tile:hover {
background-color: #333333;
height: 172px;
width: 172px;
z-index: 9999;
}
这是你想要的就试试吧。
.tile:hover {
background-color: #333333;
height: 172px;`
width: 172px;
z-index:1000;
}