我有悬停事件扩展的图块,但它们部分被相邻图块覆盖,我该如何解决?
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;
}
这是我的小提琴的链接:https://jsfiddle.net/zjcfope1/
答案 0 :(得分:2)
将z-index
添加到tile类。查看此更新的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;
}
答案 1 :(得分:0)
这是你想要试试这个。
.tile:hover {
background-color: #333333;
height: 172px;`
width: 172px;
z-index:1000;
}