Herramientas de usuario

Herramientas del sitio


wiki2:html_css

¡Esta es una revisión vieja del documento!


HTML and CSS gotchas

Change others

On a CSS hover event, change another div's styling. Without elements between:

#a:hover + #b {
    background: #ccc
}
...
<div id="a">Div A</div>
<div id="b">Div B</div>

On a CSS hover event, change another div's styling. With elements between:

#a:hover ~ #b {
    background: #ccc
}
...
<div id="a">Div A</div>
<div>random other elements</div>
<div>random other elements</div>
<div>random other elements</div>
<div id="b">Div B</div>
wiki2/html_css.1543578739.txt.gz · Última modificación: 2020/05/09 09:24 (editor externo)