text-indent

q6hillz·2022년 4월 16일
0

css

목록 보기
15/25

text-indent

Definition and Usage

The text-indent property specifies the indentation of the first line in a text-block.

Note: Negative values are allowed. The first line will be indented to the left if the value is negative.

div.a {
  text-indent: 50px;
}

div.b {
  text-indent: -2em;
}

div.c {
  text-indent: 30%;
}

text-block 첫번째 라인의 들여쓰기를 설정할 수 있는 css 속성이다.

0개의 댓글