CSS 122

first-letter 첫번째 글자 속성

See the Pen first-letter by nilgi (@nilgi) on CodePen. first-letter는 다음 속성을 가질 수 있습니다. • font • color • background • margin • padding • border • text-decoration • vertical-align (float이 'none'일 때) • text-transform • line-height • float • clear Love of my life, you've hurt me You've broken my heart And now you leave me Love of my life, can't you see? Bring it back, bring it back Don't take it awa..

CSS 2022.08.23

text-indent 들여쓰기

See the Pen text-indent by nilgi (@nilgi) on CodePen. text-indent: 30px; 내 곁에 있어줘 내게 머물러줘. 네 손을 잡은 날 놓치지 말아줘. 이렇게 니가 한 걸음 멀어지면내가 한 걸음 더 가면 되잖아 [정준일 - 안아줘] text-indent: 10%; 내 곁에 있어줘 내게 머물러줘. 네 손을 잡은 날 놓치지 말아줘. 이렇게 니가 한 걸음 멀어지면내가 한 걸음 더 가면 되잖아 [정준일 - 안아줘] text-indent: 3cm; 내 곁에 있어줘 내게 머물러줘. 네 손을 잡은 날 놓치지 말아줘. 이렇게 니가 한 걸음 멀어지면내가 한 걸음 더 가면 되잖아 [정준일 - 안아줘] text-indent: -1em; / 마이너스 값 가능 내 곁에 있어줘 내게 ..

CSS 2022.08.23

:nth-child(n) 자식요소 선택 - CSS

See the Pen :nth-child(n) by nilgi (@nilgi) on CodePen. :nth-child(n) n번째 자식요소 선택. n은 숫자, 홀수(odd), 짝수(even), 수식 가능 :nth-child(n) 1번째 자식요소 2번째 자식요소 3번째 자식요소 4번째 자식요소 5번째 자식요소 :nth-child(홀수 or 짝수) 홀수 칸 짝수 칸 홀수 칸 짝수 칸 홀수 칸 짝수 칸 :nth-child(수식) 1번 2번 3번 4번 5번 6번 7번 8번 9번 10번 :nth-last-child(n) 뒤에서부터 n번째 자식요소 선택. n은 홀수, 짝수, 수식 가능 1번째 요소 2번째 요소 3번째 요소 4번째 요소 5번째 요소

CSS 2022.07.18

hr 꾸미기

See the Pen hr style by nilgi (@nilgi) on CodePen. 기본 • hr 꾸미기는 border를 사용하면 된다. border: 1px solid #000 border: 1px dashed #000 border-top: 1px dashed #000 border-bottom: 1px dashed #000 border: 2px solid #000 border: 2px dashed #000 border-top: 2px dashed #000 border-bottom: 2px dashed #000 ※ border-bottom은 자세히 보면 이중선으로 나오니 border만 쓰던지 border-top을 쓰자. border: 1px dotted #000 border: 1px dotted ..

CSS 2022.05.14

이미지 위치변경 애니메이션

See the Pen 이미지 위치 변경 by nilgi (@nilgi) on CodePen. .op { width: 200px; height: 400px; object-fit: cover; / 비율을 유지하고 박스보다 콘텐츠가 크면 잘린다. object-position: 0% 0%; / 콘텐츠 위지 저정 x% y% animation: op 6s infinite; } @keyframes op { 0% { object-position: 0% 0%; } 25% { object-position: 25% 0%; } 50% { object-position: 50% 0%; } 75% { object-position: 75% 0%; } 100% { object-position: 100% 0%; } }

CSS 2021.08.02

커지는 글자

See the Pen 커지는 글자 by nilgi (@nilgi) on CodePen. .bt { /클래스 bt animation: bt 3s infinite; / 애니메이션 이름 bt 3초 반복 } @keyframes bt { / 애니메이션 bt에 키프레임 50% { / 50% 지점에서 font-size: 30px; / 글자 크기를 30px로 } } .bt2 { / 클래스 bt2 font-size: 10px; / 글자 크기 10px animation: bt2 0.5s infinite; / 애니메이션 이름 bt2 0.5초 반복 } @keyframes bt2 { 애니메이션 bt2에 키프레임 50% { / 50% 지점에서 font-size: 20px; / 글자 크기 20px로 } }

CSS 2021.07.29

색이 변하는 글자

See the Pen 색이 변하는 글자 by nilgi (@nilgi) on CodePen. .ct { color: #333; / 색 #333 animation: ct 6s infinite; / 애니메이션 이름 ct 6초 반복 } @keyframes ct { / 애니메이션 ct에 키프레임 넣기 25% {color: gold;} / 전체 6초 중 25%에서 금색으로 50% {color: tomato;} / 50%에서 토마토색으로 75% {color: #fff;} / 75%에서 흰색으로 } .ct2 { color: #fff; animation: ct 3s infinite; } @keyframes ct { 25% {color: tomato;} 50% {color: gold;} 75% {color: #333;} }

CSS 2021.07.27