기존에 사전스터디에서 HTML&CSS를 공부했지만 replit
을 진행하면서 생소했던 부분들만 정리해보았습니다.
<!DOCTYPE html>
<meta charset ="utf-8">
<meta name ="viewport" content="width=device-width">
* {
box-sizing : border-box;
}
*
: 모든 태그에 적용<img alt="HTML" src="url">
alt
: 해당 이미지를 정상적으로 불러올 수 없을 때 텍스트를 출력src
: 해당 이미지를 가져올 urlli {
padding-top: 10px;
}
li:first-children {
padding-top: 0px;
}
li:nth-childen(odd) {
color: red;
}
li:nth-childen(even) {
color: blue;
}
li:first-children
: 리스트 중 첫번째li:last-children
: 리스트 중 마지막li:nth-children(odd)
: 홀수 번째 리스트li:nth-children(even)
: 짝수 번째 리스트