텍스트 들여쓰기 속성은 단락의 텍스트를 들여쓰기하는 데 사용됩니다. 가능한 값은 % 또는 들여쓰기 공백을 지정하는 숫자입니다.
예시
다음 코드를 실행하여 텍스트 들여쓰기를 구현할 수 있습니다. CSS의 속성:
<html> <head> </head> <body> <p style = "text-indent:2cm;"> This text will have first line indented by 2cm and this line will remain at its actual position this is done by CSS text-indent property. </p> </body> </html>