Answers for "hover on one button affect another"

CSS
1

make action on hover on other element

#container:hover ~ #cube { background-color: yellow; }
Posted by: Guest on January-17-2021
0

make action on hover on other element

#container {
  width: 200px;
  height: 30px;
  border: 1px solid var(--c);
  --c:red;
}
#container:hover {
  --c:blue;
}
#container > div {
  width: 30px;
  height: 100%;
  background-color: var(--c);
}
Posted by: Guest on January-17-2021

Code answers related to "hover on one button affect another"

Browse Popular Code Answers by Language