簡體   English   中英

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;
}

這是我的小提琴的鏈接: https : //jsfiddle.net/zjcfope1/

z-index添加到tile類。 看看這個更新的小提琴

.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;

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM