有没有一种方法可以赋予元素z-index但不活跃?

时间:2019-06-17 10:28:28

标签: css z-index

我有三个div元素,两个元素的侧面有背景图像,中间的一个带有big&letter:

enter image description here

问题是,当我将鼠标悬停在左侧图像div的右侧时,鼠标未处于活动状态(鼠标悬停在&字母上)。与右侧图片的左侧相同。

在两个div上都悬停有什么解决方案?

我尝试使用z-index,但是由于明显的原因而无法使用。

有HTML代码:

<div class="front-photo-class>
  <div>Category no. 1</div>
</div>
<div class="front-and-symbol-class"></div>
<div class="front-photo-class>
  <div>Category no. 2</div>
</div>

有CSS代码:

.front-photo-class {
  width: 350px;
  height: 350px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

front-and-symbol-class {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 200px;
  font-weight: 100;
  font-family: 'antro_vectraregular';
  margin-left: 0;
  margin-right: 0;
  z-index: 1;
  position: absolute;
  left: 41%;
  right: 41%;
  margin-top: 100px;
}

我希望两个div(侧面)都悬停。

0 个答案:

没有答案