const a = [
[1, 2, 3],
['a', 'b', 'c'],
[4, 5, 6],
['d', 'e', 'f'],
[7, 8, 9],
];
console.log(a.reduce((acc, el) => [...acc, el[0]], []));
Если absolute применить то он уедет, без скриптов можно так сделать?
.example {
background: green;
height: 100px;
transition: all 1s linear;
width: 100px;
}
.example:hover {
background: red;
height: 200px;
width: 200px;
}