Answers for "on hover another do action css"

CSS
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

Browse Popular Code Answers by Language