/* li 태그의 첫번째 요소인 경우 */
li:first-child {
color: #0066ff;
}
/* li 태그의 마지막 요소인 경우 */
li:last-child {
color: #ffc82c;
}
/* li 태그 중 3번째 요소 */
li:nth-child(3) {
color: #ff4949;
}
/* li 태그 중 짝수인 요소 */
li:nth-child(2n) {
color: #ff4949;
}
/* 마우스를 올리면 스타일 적용 */
a:hover {
background-color: #7e5bef;
}
/* 누르는 찰나에 스타일을 적용 */
a:active {
background-color: #592dea;
}
/* input 태그에 작업을 수행할 때 적용 */
input:focus {
border-color: red;
}