<p title="Strophe1" id="st">P1</p>
<h1></h1>
<h2></h2>
</header><p class="refrain">P2</p>
<p title="Strophe4" id="str">P3</p>
<p class="refrain" id="ref4">P4</p>
</article>
Vous connaisez déjà ce fichier de Test (lien)
Voici un ensemble de selecteurs qui encadrent le second div.
sélecteur | Test |
div { border:1px solid;} | ❎ |
div:first-child {border:1px solid;} | ❎ |
div + div { border:1px solid;} | ❎ |
div:nth-child(2) {border:1px solid;} | ❎ |
... |
👿 BUG !
Tout semble parfait, mais le selecteur div:last-child {border:1px solid;} devrait lui aussi selectionner le second DIV.
div:last-child {border:1px solid;} | 😡😡😡 |
Il n'en ai rien. Trouvez l'explication à ce comportement.
Verifier votre hypothèse avec ce selecteur !div:not(div:last-child) {border:1px solid;} | ❎ |
<p title="Strophe1" id="st">P1</p>
<p class="refrain">P2</p>
<p title="Strophe4" id="str">P3</p>
<p class="refrain" id="ref4">P4</p>
Analyser et corriger le code
![]() |
https://dupontdenis.github.io/cssPostion-useCase/ |
![]() |
Correction |
Cours
https://sites.google.com/view/duponthtml/position?authuser=0
Position absolue !
Code pour le TD -> github
<section>
<div id="div1" class="sel">div 1</div>
<div id="div2" class="sel">div 2</div>
<div id="div3">div 3</div>
<div id="div4">div 4</div>
</section>
n | -n+2 |
0 | 2 |
1 | 1 |
2 | 0 |
3 | -1 |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=p, initial-scale=1.0"> | |
<title>Document</title> | |
<link rel="stylesheet" href="./pos.css"> | |
</head> | |
<body> | |
<section class="demo"> | |
<div><code> bloc 1</code></div> | |
<div><code> bloc 2</code></div> | |
<div><code> bloc 3</code></div> | |
</section> | |
</body> | |
</html> |
/* pos */ | |
/* SETTINGS */ | |
:root { | |
--color-off-white: #f3f4f4; | |
--color-stroke: #dadce0; | |
--font-mono: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; | |
} | |
.demo>* { | |
height: 20vh; | |
padding: 1em; | |
display: grid; | |
place-items: end; | |
} | |
.demo>*+* { | |
/* opacity: 0.75; */ | |
box-shadow: 0 -1px 10px rgba(0 0 0 / 60%); | |
} | |
.demo> :first-child { | |
background: aliceblue; | |
border: 2px solid lightblue; | |
} | |
.demo> :nth-child(2) { | |
background: pink; | |
border: 2px solid hotpink; | |
} | |
.demo> :last-child { | |
background: wheat; | |
border: 2px solid gold; | |
} | |
code { | |
padding: 0.125em 0.25em; | |
background: var(--color-off-white); | |
border: 1px solid var(--color-stroke); | |
font-family: var(--font-mono); | |
font-size: 1.25em; | |
hyphens: none; | |
tab-size: 2; | |
text-align: left; | |
word-spacing: normal; | |
word-break: normal; | |
word-wrap: normal; | |
} |
Pour selectionner des éléments avec des attributs :
🥈 Class
Test : Trouver le selecteur de class pour selectionner le premier para X :
La structure d'une page HTML est un arbre, on utilise le vocabulaire :
Quelle selecteur donne le résultat ?
Sans toucher au HTML, trouver la valeur du selecteur ?? permettant d'encadrer para03
Liste des selecteurs
https://dupontcss.blogspot.com/p/selecteurs.html
Voici une sous liste de selecteurs à maîtriser.
Selector | Example | Example description |
---|---|---|
.class | .intro | Selects all elements with class="intro" |
#id | #firstname | Selects the element with id="firstname" |
* | * | Selects all elements |
element | p | Selects all <p> elements |
element,element | div, p | Selects all <div> elements and all <p> elements |
element element | div p | Selects all <p> elements inside <div> elements |
element>element | div > p | Selects all <p> elements where the parent is a <div> element |
element+element | div + p | Selects all <p> elements that are placed immediately after <div> elements |
element1~element2 | p ~ ul | Selects every <ul> element that are preceded by a <p> element |
:nth-child(n) | p:nth-child(2) | Selects every <p> element that is the second child of its parent |