가오리의 코딩일기
CSS DINER(3) 본문
LEVEL21
plate:nth-of-type(even){
}
LEVEL22
plate:nth-of-type(2n+3){
}
LEVEL23
plate .small:only-of-type{
}
LEVEL24
.small:last-of-type{
}
LEVEL25
bento:empty{
}
LEVEL26
:not(.small, plate){
}
LEVEL27
[for]{
}
LEVEL28
plate[for]{
}
LEVEL29
bento[for="Vitaly"]{
}
LEVEL30
[for^="Sa"]{
}
→ ^= : 접두사로 "Sa"를 가진다
LEVEL31
[for$="ato"]{
}
→ $= : 접미사로 "ato"를 가진다
LEVEL32
[for*="obb"]{
}
→ *= : 뒤에 오는 문자열이 적어도 하나 이상 존재할 때 사용
'HTML+CSS+JavaScript > 만들기' 카테고리의 다른 글
HTML5와 CSS3를 사용해서 웹 페이지 하나 만들어보기 (0) | 2022.06.04 |
---|---|
Flexbox Defense (0) | 2022.06.02 |
CSS DINER(2) (0) | 2022.06.01 |
CSS DINER(1) (0) | 2022.06.01 |
GRID GARDEN(2) (0) | 2022.05.31 |