Horje
how to affect a deffernt element in css Code Example
when hover target diffrent element
//cube is directly inside the container:
#container:hover > #cube { background-color: yellow; }

//cube is next to (after containers closing tag) the container:
#container:hover + #cube { background-color: yellow; }

//If the cube is somewhere inside the container:
#container:hover #cube { background-color: yellow; }

//If the cube is a sibling of the container:
#container:hover ~ #cube { background-color: yellow; }
css hover affect other item
#container:hover ~ #cube { background-color: yellow; }
how to affect a deffernt element in css
<div id="container">
  <div id="cube">
  </div>
</div>




Css

Related
howto stop the screen from zooming in when I click on input tag on mible Code Example howto stop the screen from zooming in when I click on input tag on mible Code Example
animating a text in css Code Example animating a text in css Code Example
SCSS Auto link coloured button style Code Example SCSS Auto link coloured button style Code Example
limit p Code Example limit p Code Example
ignore certificare ssl Code Example ignore certificare ssl Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11