가오리의 코딩일기

CSS DINER(2) 본문

HTML+CSS+JavaScript/만들기

CSS DINER(2)

류경혜 2022. 6. 1. 14:00

LEVEL11

plate *{
}

 

 

 

 

LEVEL12

plate + apple{
}

→ plate 바로 뒤에 있는 apple

 

 

 

 

LEVEL13

bento ~ pickle{
}

 

 

 

 

LEVEL14

plate > apple{
}

 

 

 

 

LEVEL15

orange:first-child{
}

 

 

 

 

LEVEL16

plate :only-child{
}

 

 

 

 

LEVEL17

.small:last-child{
}

 

 

 

 

LEVEL18

plate:nth-child(3){
}

→ 3 : 앞을 기준으로 3번째

 

 

 

 

LEVEL19

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

→ (3) : 뒤에서 세 번째

 

 

 

 

LEVEL20

apple:first-of-type{
}

'HTML+CSS+JavaScript > 만들기' 카테고리의 다른 글

Flexbox Defense  (0) 2022.06.02
CSS DINER(3)  (0) 2022.06.01
CSS DINER(1)  (0) 2022.06.01
GRID GARDEN(2)  (0) 2022.05.31
GRID GARDEN(1)  (0) 2022.05.31