WEB HTM CSS

· EOG, like EOF


selectors #

the adjacent sibling (same level) #

h1 + p

<h1></h1>
 <p id='this'>

all siblings (same level) #

h1 ~ p

<h1></h1>
 <p id='this'>
 <p id='this too'>

the direct child (inside) #

h1 > p

<h1>
 <p id='this'>
</h1>
last updated: