http://dupontl1.blogspot.com/2019/02/td-grid.html
http://dupontl1.blogspot.com/search?q=DS
Test
<body>
<div class="top">div : class top
<h1>h1</h1>
<div id="tmpPlants" class="tmpExample">
<div class="A B tmpExample" id="item.A">div : class =A et B id=item.A</div>
<div class="A tmpExample" id="b">div : class =A id=b</div>
<div class="B tmpExample" id="c">div : class =B id=c</div>
</div>
<footer> footer </footer>
</div>
Encadrer les éléments sélectionnés par les expressions :
document.body.querySelector(".top :first-Child")
document.body.querySelectorAll(".top :first-Child")[1]
document.body.querySelector(".top").firstChild
document.body.querySelector(".top").firstElementChild.previousSibling
document.body.querySelector(".top").lastChild.previousElementSibling
div, h1
.A.B
.top :first-child
.top :nth-child(1)
.top :nth-of-type(1)
.A.B
.top :first-child
.top :nth-child(1)
.top :nth-of-type(1)
Ecrire deux expressions permettant de mettre le <footer> premier enfant de body !
Correction de l'examen : ⇗
Correction de l'examen : ⇗