将悬停应用于具有CSS的相同类名的所有元素

时间:2018-10-01 12:03:51

标签: html css

在下面的html代码中,每个具有“ right”类名称的div标签都位于屏幕右侧的空心矩形的一侧,而“ left” divs则位于屏幕左侧的空心矩形的一侧,我想使用 hover ,所以当我将鼠标悬停在左侧或右侧矩形的每一侧所有都显示在屏幕顶部时,html和CSS代码如下所示:

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id='container'>
    <div class='right'></div>
    <div class='right'></div>
    <div class='right'></div>
    <div class='right'></div>
    <div class='left'></div> 
    <div class='left'></div> 
    <div class='left'></div> 
    <div class='left'></div> 
</div>
</body>
</html>

css代码:

body{
    margin: 0;
}

#container{
    position: relative;
    background: #D5D8DC;
    height:400px;
    width: 400px;
    margin-top: 100px;
    margin-left: 100px;
}

.right{
    background: #2ECC71;
}

.right:nth-child(1){
    position: absolute;
    height: 80%;
    width: 10%;
    top: 0;
    right: 0;
}

.right:nth-child(2){
    position: absolute;
    height: 10%;
    width: 80%;
    top: 0;
    right: 0;
}

.right:nth-child(3){
    position: absolute;
    height: 80%;
    width: 10%;
    top: 0;
    left: 20%;
    z-index: 10;
}

.right:nth-child(4){
    position: absolute;
    height: 10%;
    width: 80%;
    right: 0;
    bottom: 20%;
}

.left{
    background: #E74C3C;
}

.left:nth-child(5){
    position: absolute;
    height: 10%;
    width: 80%;
    bottom: 0;
    left: 0;
}

.left:nth-child(6){
    position: absolute;
    height: 80%;
    width: 10%;
    bottom: 0;
    left: 0;
}

.left:nth-child(7){
    position: absolute;
    height: 10%;
    width: 80%;
    left: 0;
    top: 20%;
}

.left:nth-child(8){
    position: absolute;
    height: 80%;
    width: 10%;
    bottom: 0;
    right: 20%;
}

.right:hover{
    z-index: 10;
}   

如您所见,当我使用.right:hover{z-index:10}时,它并不适用于所有 right 面,它会将z-index应用于鼠标悬停在其上的那面...

注意:我没有使用JavaScript或更改html代码的权限,我应该仅通过编写CSS代码即可解决问题

2 个答案:

答案 0 :(得分:2)

基于您的HTML结构,您可以使用同级选择器和直接选择器来管理此操作,例如:

.right:hover ~ .right,
.right:hover {
  z-index: 10;
}

body {
  margin: 0;
}

#container {
  position: relative;
  background: #D5D8DC;
  height: 100px;
  width: 100px;
  margin-top: 10px;
  margin-left: 10px;
}

.right {
  background: #2ECC71;
}

.right:nth-child(1) {
  position: absolute;
  height: 80%;
  width: 10%;
  top: 0;
  right: 0;
}

.right:nth-child(2) {
  position: absolute;
  height: 10%;
  width: 80%;
  top: 0;
  right: 0;
}

.right:nth-child(3) {
  position: absolute;
  height: 80%;
  width: 10%;
  top: 0;
  left: 20%;
  z-index: 10;
}

.right:nth-child(4) {
  position: absolute;
  height: 10%;
  width: 80%;
  right: 0;
  bottom: 20%;
}

.left {
  background: #E74C3C;
}

.left:nth-child(5) {
  position: absolute;
  height: 10%;
  width: 80%;
  bottom: 0;
  left: 0;
}

.left:nth-child(6) {
  position: absolute;
  height: 80%;
  width: 10%;
  bottom: 0;
  left: 0;
}

.left:nth-child(7) {
  position: absolute;
  height: 10%;
  width: 80%;
  left: 0;
  top: 20%;
}

.left:nth-child(8) {
  position: absolute;
  height: 80%;
  width: 10%;
  bottom: 0;
  right: 20%;
}

.right:hover~.right,
.right:hover {
  z-index: 10;
}

.left:hover~.left,
.left:hover {
  z-index: 10;
}
<div id='container'>
  <div class='right'></div>
  <div class='right'></div>
  <div class='right'></div>
  <div class='right'></div>
  <div class='left'></div>
  <div class='left'></div>
  <div class='left'></div>
  <div class='left'></div>
</div>

答案 1 :(得分:1)

要基于其他元素选择其他元素,可以使用~+

在您的情况下,~是最好的方法您可以阅读有关所有CSS HERE

的信息。

现在这些选择器仅向下选择我的意思是,如果您将鼠标悬停在最后一个元素上,则以上元素将不会受到影响,因为它仅选择了前面的元素。 考虑到我们似乎将鼠标悬停在最后一个div上是有问题的,因为它不会选择另一个div来显示它们,但是在您的情况下,我们可以操纵元素的放置,如果我们将鼠标悬停在最后一个div上over不会影响另一个到顶部的矩形,而矩形的一部分总是被另一个矩形隐藏,因此当我们将鼠标悬停在其上方时,如果将其悬停在其他元素上,它将显示也会出现。抱歉,如果我的解释有点难以理解。

这是一个有效的演示

body {
  margin: 0;
}

#container {
  position: relative;
  background: #D5D8DC;
  height: 400px;
  width: 400px;
}

.right {
  background: #2ECC71;
}

.right:nth-child(1) {
  position: absolute;
  height: 80%;
  width: 10%;
  top: 0;
  right: 0;
}

.right:nth-child(2) {
  position: absolute;
  height: 10%;
  width: 80%;
  top: 0;
  right: 0;
}

.right:nth-child(3) {
  position: absolute;
  height: 80%;
  width: 10%;
  top: 0;
  left: 20%;
  z-index: 10;
}

.right:nth-child(4) {
  position: absolute;
  height: 10%;
  width: 80%;
  right: 0;
  bottom: 20%;
}

.left {
  background: #E74C3C;
}

.left:nth-child(5) {
  position: absolute;
  height: 10%;
  width: 80%;
  bottom: 0;
  left: 0;
}

.left:nth-child(6) {
  position: absolute;
  height: 80%;
  width: 10%;
  bottom: 0;
  left: 0;
}

.left:nth-child(7) {
  position: absolute;
  height: 80%;
  width: 10%;
  right: 20%;
  top: 20%;
}

.left:nth-child(8) {
  position: absolute;
  height: 10%;
  width: 80%;
  top: 20%;
}

.right:hover ~ .right,
.right:hover {
  z-index: 10;
}

.left:hover ~ .left,
.left:hover {
  z-index: 10;
}
<div id='container'>
  <div class='right'></div>
  <div class='right'></div>
  <div class='right'></div>
  <div class='right'></div>
  <div class='left'></div>
  <div class='left'></div>
  <div class='left'></div>
  <div class='left'></div>
</div>