Web Frontend/HTML_CSS

[ifp_html_css] CSS diner 11 ~ 20

홍유진 2022. 6. 3. 18:11

Level 11

plate * {
}

Level 12

plate + apple {
}

Level 13

bento ~ pickle {
}


Level 14

 

plate > apple {
}

Level 15

orange:first-child {
}

Level 16

plate :only-child {
}

Level 17

.small:last-child {
}

Level 18

plate:nth-child(3)  {
}

Level 19

bento:nth-last-child(3){
}

Level 20

apple:first-of-type{
}