text-align 좌우 정렬
text-align: left;
text-align: center;
text-align: justify; /* 글자 간격을 벌려서 좌우 끝을 맞춘다. */
text-indent 들여 쓰기
text-indent: 1rem;
text-decoration
text-decoration: underline; /* 밑줄 */
text-decoration: line-through; /* 가운데 줄 */
text-transform 대소문자 변환
text-decoration: uppercase; /* 대문자 변환 */
text-decoration: lowercase; /* 소문자 변환 */
text-decoration: capitalize; /* 단어 첫 글자만 대문자 */
한 줄로 표시되고 width를 넘었을 때 ...으로 표시하는 방법
width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
(2줄 이상인 경우에는 line-clamp를 이용한다.)
Multi Column (CSS 3)
column-count: 2; /* 칼럼 수 */
column-gap: 2rem; /* 칼럼 간격 */
column-rule: 3px dotted grey; /* 칼럼을 나누는 선 */
'CSS > Font' 카테고리의 다른 글
Font Size에 관한 모든 것 (0) | 2021.02.11 |
---|---|
System Font 설정 방법 (0) | 2021.02.11 |
Font를 다운 받기 전 글자를 나타내는 방식 설정법 - font-display (0) | 2021.02.11 |
웹 페이지를 위해 압축된 폰트, WOFF 적용 방법 (0) | 2021.02.08 |