Deuxieme article
Premier paragraphe
Contenu normal
Page simple avec les concepts principaux du TP.
Exemples de selecteurs :
.main-nav a
.main-nav a.active
.post.featured
article p:first-of-type
li:nth-child(even)
Premier paragraphe
Contenu normal
Premier paragraphe
Contenu normal
Specificite croissante : p < .text < p.text < #main < #main .text p
content-box : largeur totale = 350px
border-box : largeur totale = 300px
*,
*::before,
*::after {
box-sizing: border-box;
}
Mobile first : on commence par le style mobile puis on ajoute les media queries avec min-width.