Ну я так и думал, просто бывает что люди в своем изучении могут делать такие вещи о которых даже не предположить из серии А ЧТО ТАК МОЖНО БЫЛО?! вот и спросил на всякий случай.
Можно сделать вот такой визуальный обман )) и сейчас наводишься на "последний элемент" и все работает.
Наводишь на 3 меняться один, наводишь на 6 меняется 4
По идее должно сработать и с абсолютным позиционирование, но я не пробовал.
Но общего родителя ни как не отменить.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.roditel {
display: inline-grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto;
grid-template-areas:
"rebenok3 rebenok2 rebenok1";
}
.roditel2 {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
}
.rebenok {
width: 64px;
height: 64px;
border: 4px solid #000;
font-size: 24px;
display: flex;
justify-content: center;
align-items: center;
margin: 0px 20px 0px 20px;
cursor: pointer;
}
.rebenok1 {
color: red;
grid-area: rebenok1;
}
.rebenok2 {
color: orange;
grid-area: rebenok2;
}
.rebenok3 {
color: green;
grid-area: rebenok3;
}
.rebenok4 {
color: red;
}
.rebenok5 {
color: orange;
}
.rebenok6 {
color: green;
}
.rebenok1:hover~.rebenok3{
color: black;
}
.rebenok4:hover~.rebenok6{
color: black;
}
</style>
</head>
<body>
<h1>Родитель 1</h1>
<div class="roditel">
<div class="rebenok rebenok1">3</div>
<div class="rebenok rebenok2">2</div>
<div class="rebenok rebenok3">1</div>
</div>
<h1>Родитель 2</h1>
<div class="roditel2">
<div class="rebenok rebenok4">6</div>
<div class="rebenok rebenok5">5</div>
<div class="rebenok rebenok6">4</div>
</div>
</body>
</html>