👩🏼💻 공백 처리, 문자 간격, 텍스트 오버플로우, 대소문자 변환, 웹폰트, 목록 스타일링
@import url('https://fonts.googleapis.com/css2?family=Gugi&display=swap');
p {
font-family: 'Gugi', cursive;
}
@import 또는 <link> 방식 사용font-family로 적용text-transformtext-transform: uppercase; /* 모두 대문자 */
text-transform: lowercase; /* 모두 소문자 */
text-transform: capitalize; /* 각 단어 첫 글자 대문자 */

letter-spacing (글자 간격)letter-spacing: 2px;

word-spacing (단어 간격)word-spacing: 10px;

white-space| 속성값 | 설명 |
|---|---|
normal | 기본값, 줄바꿈 허용, 연속 공백은 1칸 |
nowrap | 줄바꿈 안 됨 |
pre | 공백과 줄바꿈 모두 유지 |
pre-wrap | 공백 유지 + 줄바꿈 자동 처리 |
pre-line | 줄바꿈은 유지, 연속 공백은 무시 |
white-space: pre-wrap;

word-break, word-wrapword-break: break-all; /* 단어 중간이라도 줄바꿈 */
word-wrap: break-word; /* 너무 길면 강제 줄바꿈 */

text-overflow.subject {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
width와 함께 사용해야 함...으로 표시
list-styleul {
list-style-type: square; /* 불릿 모양 변경 */
}
ol {
list-style-type: upper-roman; /* I, II, III ... */
}
ul.none {
list-style: none; /* 불릿 제거 */
}
list-style-image로 이미지 불릿도 가능